diff --git a/.github/workflows/build-rfr-app.yml b/.github/workflows/build-rfr-app.yml new file mode 100644 index 00000000..5b056e52 --- /dev/null +++ b/.github/workflows/build-rfr-app.yml @@ -0,0 +1,84 @@ +# Based on: https://www.andrewhoog.com/post/how-to-build-an-ios-app-with-github-actions-2023/ +name: "Build RFR app" + +on: + # manual trigger but change to any supported event + # see addl: https://www.andrewhoog.com/post/how-to-build-react-native-android-app-with-github-actions/#3-run-build-workflow + workflow_dispatch: + branches: [main,task/STAD-565_clean-source] + push: + branches: + - "task/STAD-565_clean-source" + pull_request: + branches: + - "main" + paths: + - ".github/workflows/build-rfr-app.yml" + +jobs: + build_with_signing: + runs-on: macos-latest + steps: + # this was more debug as was curious what came pre-installed + # GitHub shares this online, e.g. https://github.com/actions/runner-images/blob/macOS-12/20230224.1/images/macos/macos-12-Readme.md + - name: check Xcode version + run: /usr/bin/xcodebuild -version + + - name: checkout repository + uses: actions/checkout@v3 + + - name: Install the Apple certificate and provisioning profile + env: + BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} + P12_PASSWORD: ${{ secrets.P12_PASSWORD }} + BUILD_PROVISION_PROFILE_BASE64: ${{ secrets.BUILD_PROVISION_PROFILE_BASE64 }} + KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} + run: | + # create variables + CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12 + PP_PATH=$RUNNER_TEMP/build_pp.mobileprovision + KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db + + # import certificate and provisioning profile from secrets + echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH + echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH + + # create temporary keychain + security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH + security set-keychain-settings -lut 21600 $KEYCHAIN_PATH + security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH + + # import certificate to keychain + security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH + security list-keychain -d user -s $KEYCHAIN_PATH + + # apply provisioning profile + mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles + cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles + + - name: build archive + run: | + xcodebuild -scheme "RFR Staging" \ + -archivePath $RUNNER_TEMP/rfrstaging.xcarchive \ + -sdk iphoneos \ + -configuration Debug \ + -destination generic/platform=iOS \ + clean archive + + - name: export ipa + env: + EXPORT_OPTIONS_PLIST: ${{ secrets.EXPORT_OPTIONS_PLIST }} + run: | + EXPORT_OPTS_PATH=$RUNNER_TEMP/ExportOptions.plist + echo -n "$EXPORT_OPTIONS_PLIST" | base64 --decode -o $EXPORT_OPTS_PATH + xcodebuild -exportArchive -archivePath $RUNNER_TEMP/rfrstaging.xcarchive -exportOptionsPlist $EXPORT_OPTS_PATH -exportPath $RUNNER_TEMP/build + + - name: Upload application + uses: actions/upload-artifact@v3 + with: + name: app + path: ${{ runner.temp }}/build/RFR.ipa + # you can also archive the entire directory + # path: ${{ runner.temp }}/build + retention-days: 3 + diff --git a/DataCapturing.doccarchive/css/documentation-topic.de084985.css b/DataCapturing.doccarchive/css/documentation-topic.de084985.css deleted file mode 100644 index 2271f561..00000000 --- a/DataCapturing.doccarchive/css/documentation-topic.de084985.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-2bfc9463]{--badge-color:var(--color-badge-default);--badge-dark-color:var(--color-badge-dark-default);font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:inline-block;padding:2px 10px;white-space:nowrap;background:none;border-radius:3px;margin-left:10px;border:1px solid var(--badge-color);color:var(--badge-color)}.theme-dark .badge[data-v-2bfc9463]{--badge-color:var(--badge-dark-color)}.badge-deprecated[data-v-2bfc9463]{--badge-color:var(--color-badge-deprecated);--badge-dark-color:var(--color-badge-dark-deprecated)}.badge-beta[data-v-2bfc9463]{--badge-color:var(--color-badge-beta);--badge-dark-color:var(--color-badge-dark-beta)}.hierarchy-collapsed-items[data-v-45c48d1a]{position:relative;display:inline-flex;align-items:center;margin-left:.58824rem}.hierarchy-collapsed-items .hierarchy-item-icon[data-v-45c48d1a]{width:9px;height:15px;margin-right:.58824rem}.nav--in-breakpoint-range .hierarchy-collapsed-items[data-v-45c48d1a]{display:none}.hierarchy-collapsed-items .toggle[data-v-45c48d1a]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-figure-gray-secondary);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-45c48d1a]{background:var(--color-nav-dark-hierarchy-collapse-background)}.hierarchy-collapsed-items .toggle.focused[data-v-45c48d1a],.hierarchy-collapsed-items .toggle[data-v-45c48d1a]:active,.hierarchy-collapsed-items .toggle[data-v-45c48d1a]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.indicator[data-v-45c48d1a]{width:1em;height:1em;display:flex;align-items:center}.indicator .toggle-icon[data-v-45c48d1a]{width:100%}.dropdown[data-v-45c48d1a]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);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-45c48d1a]{background:var(--color-nav-dark-hierarchy-collapse-background);border-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown.collapsed[data-v-45c48d1a]{opacity:0;transform:translate3d(0,-.41176rem,0);transition:opacity .25s ease,transform .25s ease,visibility 0s linear .25s;visibility:hidden}.dropdown[data-v-45c48d1a]: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-45c48d1a]:not(.collapsed){display:none}.dropdown[data-v-45c48d1a]: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.67647rem;position:absolute;top:-.44118rem}.theme-dark .dropdown[data-v-45c48d1a]:before{border-bottom-color:var(--color-nav-dark-hierarchy-collapse-background)}.dropdown-item[data-v-45c48d1a]{border-top-color:var(--color-nav-hierarchy-collapse-borders);border-top-style:solid;border-top-width:1px}.theme-dark .dropdown-item[data-v-45c48d1a]{border-top-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown-item[data-v-45c48d1a]:first-child{border-top:none}.nav-menu-link[data-v-45c48d1a]{max-width:57.64706rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;padding:.75rem 1rem}.nav-menu-item[data-v-f44c239a]{margin-left:1.41176rem;list-style:none;min-width:0}.nav--in-breakpoint-range .nav-menu-item[data-v-f44c239a]{margin-left:0;width:100%;height:2.47059rem}.nav--in-breakpoint-range .nav-menu-item[data-v-f44c239a]:first-child .nav-menu-link{border-top:0}.nav--in-breakpoint-range .nav-menu-item--animated[data-v-f44c239a]{opacity:0;transform:none;transition:.5s ease;transition-property:transform,opacity}.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.hierarchy-item[data-v-57182fdb] .hierarchy-item-icon{width:9px;height:15px;margin-right:.58824rem}.nav--in-breakpoint-range .hierarchy-item[data-v-57182fdb] .hierarchy-item-icon{display:none}@media only screen and (min-width:1024px){.hierarchy-item[data-v-57182fdb]{display:flex;align-items:center;margin-left:.58824rem}}.nav--in-breakpoint-range .hierarchy-item[data-v-57182fdb]{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-57182fdb]{border-top-color:var(--color-nav-dark-hierarchy-item-borders)}.nav--in-breakpoint-range .hierarchy-item[data-v-57182fdb]:first-of-type{border-top:none}.hierarchy-item.collapsed[data-v-57182fdb]{display:none}.nav--in-breakpoint-range .hierarchy-item.collapsed[data-v-57182fdb]{display:inline-block}.item[data-v-57182fdb]{display:inline-block;vertical-align:middle}.nav--in-breakpoint-range .item[data-v-57182fdb]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:100%;line-height:2.47059rem}@media only screen and (min-width:1024px){.hierarchy-item:first-child:last-child .item[data-v-57182fdb],.hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-57182fdb]{max-width:27rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:last-child .item[data-v-57182fdb],.has-badge .hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-57182fdb]{max-width:21.6rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(2) .item[data-v-57182fdb],.hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-57182fdb]{max-width:18rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(2) .item[data-v-57182fdb],.has-badge .hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-57182fdb]{max-width:14.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(3) .item[data-v-57182fdb],.hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-57182fdb]{max-width:9rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(3) .item[data-v-57182fdb],.has-badge .hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-57182fdb]{max-width:7.2rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item .item[data-v-57182fdb]{max-width:10.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-collapsed-items~.hierarchy-item .item[data-v-57182fdb]{max-width:8.64rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.hierarchy[data-v-20e91056]{justify-content:flex-start;min-width:0}[data-v-324c15b2] .nav-menu{font-size:.88235rem;line-height:1.26667;font-weight:400;letter-spacing:-.014em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1023px){[data-v-324c15b2] .nav-menu{font-size:.82353rem;line-height:1.5;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (min-width:1024px){[data-v-324c15b2] .nav-menu{padding-top:0}}.documentation-nav[data-v-324c15b2] .nav-title{font-size:.88235rem;line-height:1.26667;font-weight:400;letter-spacing:-.014em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1023px){.documentation-nav[data-v-324c15b2] .nav-title{font-size:.82353rem;line-height:1.5;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:767px){.documentation-nav[data-v-324c15b2] .nav-title{padding-top:0}}.documentation-nav[data-v-324c15b2] .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-324c15b2]{color:#b0b0b0}.betainfo[data-v-4edf30f4]{font-size:.94118rem;padding:3rem 0;background-color:var(--color-fill-secondary)}.betainfo-container[data-v-4edf30f4]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1068px){.betainfo-container[data-v-4edf30f4]{width:692px}}@media only screen and (max-width:735px){.betainfo-container[data-v-4edf30f4]{width:87.5%}}.betainfo-label[data-v-4edf30f4]{font-weight:600;font-size:.94118rem}.betainfo-content[data-v-4edf30f4] p{margin-bottom:10px}.contenttable+.betainfo[data-v-4edf30f4]{background-color:var(--color-fill)}.summary-section[data-v-6185a550]{margin:0 0 1.5rem}.summary-section[data-v-6185a550]:last-of-type{margin-bottom:0}.title[data-v-b903be56]{color:var(--colors-text,var(--color-text));font-size:1.11765rem;line-height:1.21053;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:.82353rem;margin-bottom:.5rem;text-rendering:optimizeLegibility}.language[data-v-0836085b]{font-size:14px}.language-option[data-v-0836085b]{display:inline}@media only screen and (max-width:735px){.language-option[data-v-0836085b]{display:block;margin-bottom:.25rem}}.language-option.active[data-v-0836085b],.language-option.router-link-exact-active[data-v-0836085b]{color:var(--colors-secondary-label,var(--color-secondary-label))}@media only screen and (min-width:736px){.language-option.swift[data-v-0836085b]{border-right:1px solid var(--color-fill-gray-tertiary);margin-right:10px;padding-right:10px}}[data-v-002affcc] .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:1px;border-style:solid}[data-v-002affcc]+.code-listing,[data-v-002affcc] .code-listing+*{margin-top:1.6em}[data-v-002affcc] .code-listing pre{padding:8px 14px;padding-right:0}[data-v-002affcc] .code-listing pre>code{font-size:.88235rem;line-height:1.66667;font-weight:400;letter-spacing:-.027em;font-family:Menlo,monospace}[data-v-002affcc] *+aside,[data-v-002affcc] *+figure,[data-v-002affcc]+.endpoint-example,[data-v-002affcc] .endpoint-example+*,[data-v-002affcc] aside+*,[data-v-002affcc] figure+*{margin-top:1.6em}[data-v-002affcc] img{display:block;margin:1.6em auto;max-width:100%}[data-v-002affcc] ol,[data-v-002affcc] ul{margin-top:.8em;margin-left:2rem}[data-v-002affcc] ol li:not(:first-child),[data-v-002affcc] ul li:not(:first-child){margin-top:.8em}@media only screen and (max-width:735px){[data-v-002affcc] ol,[data-v-002affcc] ul{margin-left:1.25rem}}[data-v-002affcc]+dl,[data-v-002affcc] dl+*,[data-v-002affcc] dt:not(:first-child){margin-top:.8em}[data-v-002affcc] dd{margin-left:2em}.abstract[data-v-702ec04e]{font-size:1.23529rem;line-height:1.38095;font-weight:400;letter-spacing:.011em;font-family: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;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-702ec04e] p:last-child{margin-bottom:0}.contenttable[data-v-1a780186]{background:var(--color-content-table-content-color);padding:3rem 0}.container[data-v-1a780186]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1068px){.container[data-v-1a780186]{width:692px}}@media only screen and (max-width:735px){.container[data-v-1a780186]{width:87.5%}}.title[data-v-1a780186]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){.title[data-v-1a780186]{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-1a780186]{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.contenttable-section[data-v-bedf02be]{border-top-color:var(--color-grid);border-top-style:solid;border-top-width:1px;align-items:baseline;display:flex;margin:2rem 0;padding-top:2rem}.contenttable-section[data-v-bedf02be]:last-child{margin-bottom:0}.section-content[data-v-bedf02be]{padding-left:1rem}[data-v-bedf02be] .title{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-bedf02be] .title{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.contenttable-section[data-v-bedf02be]{align-items:unset;border-top:none;display:inherit;margin:0}.section-content[data-v-bedf02be],.section-title[data-v-bedf02be]{padding:0}[data-v-bedf02be] .title{border-bottom-color:var(--color-grid);border-bottom-style:solid;border-bottom-width:1px;margin:0 0 2rem 0;padding-bottom:.5rem}}.topic-icon-wrapper[data-v-4d1e7968]{display:flex;align-items:center;justify-content:center;height:1.47059rem;flex:0 0 1.294rem;width:1.294rem;margin-right:.5em}.topic-icon[data-v-4d1e7968]{height:.88235rem;transform:scale(1);-webkit-transform:scale(1);overflow:visible}.topic-icon.curly-brackets-icon[data-v-4d1e7968]{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;letter-spacing:-.022em;font-family: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-1e5f16e7],.link-block[data-v-1e5f16e7] .badge{margin-left:calc(.5em + 1.294rem)}.link-block .badge+.badge[data-v-1e5f16e7]{margin-left:1rem}.link-block[data-v-1e5f16e7],.link[data-v-1e5f16e7]{box-sizing:inherit}.link-block.changed[data-v-1e5f16e7],.link.changed[data-v-1e5f16e7]{padding-left:.70588rem;padding-right:1.88235rem;padding-top:5px;padding-bottom:5px;display:inline-flex;margin-left:-.76471rem;width:calc(100% + 13px)}.link-block.changed.changed[data-v-1e5f16e7],.link.changed.changed[data-v-1e5f16e7]{padding-left:12px}@media only screen and (max-width:735px){.link-block.changed[data-v-1e5f16e7],.link.changed[data-v-1e5f16e7]{padding-left:0;padding-right:0}.link-block.changed.changed[data-v-1e5f16e7],.link.changed.changed[data-v-1e5f16e7]{padding-left:12px;padding-right:1.88235rem}}@media only screen and (max-width:735px){.link-block.changed[data-v-1e5f16e7],.link.changed[data-v-1e5f16e7]{padding-left:0;padding-right:0}}@media only screen and (max-width:735px){.link-block.changed[data-v-1e5f16e7]:not(.changed),.link.changed[data-v-1e5f16e7]:not(.changed){margin-left:0;width:100%}.link-block.changed.changed[data-v-1e5f16e7],.link.changed.changed[data-v-1e5f16e7]{margin-left:-.70588rem;width:calc(100% + 24px)}}.link[data-v-1e5f16e7]{display:flex}.link-block .badge[data-v-1e5f16e7]{margin-top:.5rem}.link-block.has-inline-element[data-v-1e5f16e7]{display:flex;align-items:flex-start;flex-flow:row wrap}.link-block.has-inline-element .badge[data-v-1e5f16e7]{margin-left:1rem;margin-top:0}.link-block .has-adjacent-elements[data-v-1e5f16e7]{padding-top:5px;padding-bottom:5px;display:inline-flex}.abstract .topic-required[data-v-1e5f16e7]:not(:first-child){margin-top:4px}.topic-required[data-v-1e5f16e7]{font-size:.8em}.deprecated[data-v-1e5f16e7]{text-decoration:line-through}.conditional-constraints[data-v-1e5f16e7]{font-size:.82353rem;margin-top:4px}.section-content>.content[data-v-3e48ad3a],.topic[data-v-3e48ad3a]:not(:last-child){margin-bottom:1.5rem}.description[data-v-3b0e7cbb]:not(:empty){margin-bottom:2rem}.nodocumentation[data-v-3b0e7cbb]{font-size:1.23529rem;line-height:1.38095;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-secondary-label,var(--color-secondary-label));margin-bottom:0}@media only screen and (max-width:735px){.nodocumentation[data-v-3b0e7cbb]{font-size:1.11765rem;line-height:1.42105;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-3b0e7cbb] .content+*{margin-top:.8em}.summary-list[data-v-731de2f2]{font-size:.82353rem;list-style:none;margin:0}.summary-list-item[data-v-1648b0ac]{margin-bottom:.25rem;padding-left:0}.summary-list-item[data-v-1648b0ac]:last-child{margin-bottom:0}.name[data-v-4616e162]:after{content:", "}.name[data-v-4616e162]:last-of-type:after{content:""}.icon-holder[data-v-7e43087c]{display:inline;white-space:nowrap}.icon-holder .link-text[data-v-7e43087c]{vertical-align:middle}.icon-holder .link-icon[data-v-7e43087c]{height:1em;vertical-align:text-bottom}.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-bb800958]{background:var(--background,var(--color-code-background));border-color:var(--color-grid);color:var(--text,var(--color-code-plain));border-radius:4px;border-style:solid;border-width:1px;padding:8px 14px;speak:literal-punctuation;line-height:25px}.source.has-multiple-lines[data-v-bb800958]{border-radius:4px}.source.indented[data-v-bb800958]{padding-left:2.76447em;text-indent:-1.88235em;white-space:normal}.source>code[data-v-bb800958]{font-size:.88235rem;line-height:1.66667;font-weight:400;letter-spacing:-.027em;font-family:Menlo,monospace;display:block}.platforms[data-v-1dc256a6]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:.45rem;margin-top:1.6em}.changed .platforms[data-v-1dc256a6]{padding-left:.588rem}.platforms[data-v-1dc256a6]:first-of-type{margin-top:1rem}.source[data-v-1dc256a6]{margin:14px 0}.platforms+.source[data-v-1dc256a6]{margin:0}.changed .source[data-v-1dc256a6]{background:none;border:none;margin-top:0;margin-bottom:0;margin-right:1.88235rem;padding-right:0}.declaration-diff-version[data-v-676d8556]{padding-left:.588rem;padding-right:1.88235rem;font-size:1rem;line-height:1.52941;font-weight:600;letter-spacing:-.021em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-figure-gray-secondary);margin:0}.declaration-diff-current[data-v-676d8556],.declaration-diff-previous[data-v-676d8556]{padding-top:5px}.declaration-diff-previous[data-v-676d8556]{background-color:var(--color-changes-modified-previous-background);border-radius:0 0 4px 4px;position:relative}.conditional-constraints[data-v-e39c4ee4]{margin:1.17647rem 0 3rem 0}.type[data-v-791bac44]:first-letter{text-transform:capitalize}.detail-type[data-v-61ef551b]{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.detail-type[data-v-61ef551b]:first-child{padding-top:0}@media only screen and (max-width:735px){.detail-type[data-v-61ef551b]{padding-left:0}}.detail-content[data-v-61ef551b]{padding-left:2rem}@media only screen and (max-width:735px){.detail-content[data-v-61ef551b]{padding-left:0}}.param-name[data-v-7bb7c035]{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.param-name[data-v-7bb7c035]:first-child{padding-top:0}@media only screen and (max-width:735px){.param-name[data-v-7bb7c035]{padding-left:0}}.param-content[data-v-7bb7c035]{padding-left:2rem}@media only screen and (max-width:735px){.param-content[data-v-7bb7c035]{padding-left:0}}.param-content[data-v-7bb7c035] dt{font-weight:600}.param-content[data-v-7bb7c035] dd{margin-left:1em}.parameters-table[data-v-1455266b] .change-added,.parameters-table[data-v-1455266b] .change-removed{display:inline-block}.parameters-table[data-v-1455266b] .change-removed,.parameters-table[data-v-1455266b] .token-removed{text-decoration:line-through}.param[data-v-1455266b]{font-size:.88235rem;box-sizing:border-box}.param.changed[data-v-1455266b]{display:flex;flex-flow:row wrap;width:100%;padding-left:.70588rem;padding-right:1.88235rem;padding-top:5px;padding-bottom:5px;display:inline-flex}.param.changed.changed[data-v-1455266b]{padding-left:12px}@media only screen and (max-width:735px){.param.changed[data-v-1455266b]{padding-left:0;padding-right:0}.param.changed.changed[data-v-1455266b]{padding-left:12px;padding-right:1.88235rem}}@media only screen and (max-width:735px){.param.changed[data-v-1455266b]{padding-left:0;padding-right:0}}@media only screen and (max-width:735px){.param.changed[data-v-1455266b]:not(.changed){margin-left:0;width:100%}.param.changed.changed[data-v-1455266b]{margin-left:-.70588rem;width:calc(100% + 24px)}}.param.changed+.param.changed[data-v-1455266b]{margin-top:.82353rem}.changed .param-content[data-v-1455266b],.changed .param-symbol[data-v-1455266b]{padding-top:5px;padding-bottom:5px}@media only screen and (max-width:735px){.changed .param-content[data-v-1455266b]{padding-top:0}.changed .param-symbol[data-v-1455266b]{padding-bottom:0}}.param-symbol[data-v-1455266b]{text-align:right}@media only screen and (max-width:735px){.param-symbol[data-v-1455266b]{text-align:left}}.param-symbol[data-v-1455266b] .type-identifier-link{color:var(--color-link)}.param+.param[data-v-1455266b]{margin-top:1.64706rem}.param+.param[data-v-1455266b]:first-child{margin-top:0}.param-content[data-v-1455266b]{padding-left:1rem;padding-right:1.88235rem}@media only screen and (max-width:735px){.param-content[data-v-1455266b]{padding-left:0;padding-right:0}}.property-metadata[data-v-8590589e]{color:var(--color-figure-gray-secondary)}.property-required{font-weight:700}.property-metadata[data-v-0a648a1e]{color:var(--color-figure-gray-secondary)}.property-name[data-v-387d76c0]{font-weight:700}.property-name.deprecated[data-v-387d76c0]{text-decoration:line-through}.property-deprecated[data-v-387d76c0]{margin-left:0}.content[data-v-387d76c0],.content[data-v-387d76c0] p:first-child{display:inline}.response-mimetype[data-v-2faa6020]{color:var(--color-figure-gray-secondary)}.part-name[data-v-458971c5]{font-weight:700}.content[data-v-458971c5],.content[data-v-458971c5] p:first-child{display:inline}.param-name[data-v-74e7f790]{font-weight:700}.param-name.deprecated[data-v-74e7f790]{text-decoration:line-through}.param-deprecated[data-v-74e7f790]{margin-left:0}.content[data-v-74e7f790],.content[data-v-74e7f790] p:first-child{display:inline}.response-name[data-v-57796e8c],.response-reason[data-v-57796e8c]{font-weight:700}@media only screen and (max-width:735px){.response-reason[data-v-57796e8c]{display:none}}.response-name>code>.reason[data-v-57796e8c]{display:none}@media only screen and (max-width:735px){.response-name>code>.reason[data-v-57796e8c]{display:initial}}[data-v-011bef72] h2{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-011bef72] h2{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-011bef72] h2{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.primary-content[data-v-011bef72]: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-011bef72]>*{margin-bottom:3rem;margin-top:3rem}.primary-content[data-v-011bef72]>:first-child{margin-top:2rem}.relationships-list[data-v-e4fe9834]{list-style:none}.relationships-list.column[data-v-e4fe9834]{margin:0}.relationships-list.inline[data-v-e4fe9834]{-moz-columns:1;columns:1;display:flex;flex-direction:row;flex-wrap:wrap;margin:0}.relationships-list.inline li[data-v-e4fe9834]:not(:last-child):after{content:",\00a0"}.relationships-list.changed[data-v-e4fe9834]{padding-left:.70588rem;padding-right:1.88235rem;padding-top:5px;padding-bottom:5px;display:inline-flex;margin-left:-.76471rem;width:calc(100% + 13px)}.relationships-list.changed.changed[data-v-e4fe9834]{padding-left:12px}@media only screen and (max-width:735px){.relationships-list.changed[data-v-e4fe9834]{padding-left:0;padding-right:0}.relationships-list.changed.changed[data-v-e4fe9834]{padding-left:12px;padding-right:1.88235rem}}@media only screen and (max-width:735px){.relationships-list.changed[data-v-e4fe9834]{padding-left:0;padding-right:0}}@media only screen and (max-width:735px){.relationships-list.changed[data-v-e4fe9834]:not(.changed){margin-left:0;width:100%}.relationships-list.changed.changed[data-v-e4fe9834]{margin-left:-.70588rem;width:calc(100% + 24px)}}.relationships-list.changed[data-v-e4fe9834]:after{margin-top:7px}.relationships-list.changed.column[data-v-e4fe9834]{display:block}.relationships-item[data-v-e4fe9834],.relationships-list[data-v-e4fe9834]{box-sizing:inherit}.conditional-constraints[data-v-e4fe9834]{font-size:.82353rem;margin:.17647rem 0 .58824rem 1.17647rem}.availability[data-v-0c59731a],.platform-list[data-v-0c59731a],.platform[data-v-0c59731a]{box-sizing:inherit}.platform[data-v-0c59731a]{padding-right:2rem;box-sizing:border-box;padding-left:.70588rem;padding-right:1.88235rem;padding-left:0;margin-bottom:.25rem;padding-top:5px;padding-bottom:5px}.platform[data-v-0c59731a]:after{width:1rem;height:1rem;margin-top:6px}.platform.changed[data-v-0c59731a]{padding-left:12px}@media only screen and (max-width:735px){.platform[data-v-0c59731a]{padding-left:0;padding-right:0}.platform.changed[data-v-0c59731a]{padding-left:12px;padding-right:1.88235rem}}.platform[data-v-0c59731a]:last-child{margin-bottom:0}.platform-badge[data-v-0c59731a]{margin-left:.47059rem}.platform.changed[data-v-0c59731a]{margin-left:-.76471rem;width:calc(100% + 13px)}.platform.changed[data-v-0c59731a]:after{width:1rem;height:1rem;margin-top:6px}@media only screen and (max-width:735px){.platform.changed[data-v-0c59731a]:not(.changed){margin-left:0;width:100%}.platform.changed.changed[data-v-0c59731a]{margin-left:-.70588rem;width:calc(100% + 24px)}}.summary[data-v-19bd58b6]{color:var(--colors-secondary-label,var(--color-secondary-label));font-size:.94118rem;margin-bottom:3rem;padding:5px 0 0 4em}@media only screen and (max-width:1068px){.summary[data-v-19bd58b6]{padding-left:2em}}@media only screen and (max-width:735px){.summary[data-v-19bd58b6]{padding-left:0;margin-bottom:2.35294rem;display:grid;grid-gap:.94118rem;grid-template-columns:repeat(auto-fill,minmax(128px,1fr))}}.topictitle[data-v-e1f00c5e]{margin-left:auto;margin-right:auto;width:980px;margin-top:2rem}@media only screen and (max-width:1068px){.topictitle[data-v-e1f00c5e]{width:692px}}@media only screen and (max-width:735px){.topictitle[data-v-e1f00c5e]{width:87.5%}}.eyebrow[data-v-e1f00c5e]{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-secondary-label,var(--color-secondary-label));display:block;margin-bottom:1.17647rem}@media only screen and (max-width:735px){.eyebrow[data-v-e1f00c5e]{font-size:1.11765rem;line-height:1.21053;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.title[data-v-e1f00c5e]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){.title[data-v-e1f00c5e]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-e1f00c5e]{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.doc-topic[data-v-134e8272]{background:var(--colors-text-background,var(--color-text-background))}#main[data-v-134e8272]{outline-style:none}.container[data-v-134e8272]{margin-left:auto;margin-right:auto;width:980px;outline-style:none;margin-top:1.5rem}@media only screen and (max-width:1068px){.container[data-v-134e8272]{width:692px}}@media only screen and (max-width:735px){.container[data-v-134e8272]{width:87.5%}}.content-grid[data-v-134e8272]{display:grid;grid-template-columns:75% 25%;grid-template-rows:auto minmax(0,1fr)}@media only screen and (max-width:735px){.content-grid[data-v-134e8272]{display:block}}.content-grid[data-v-134e8272]:after,.content-grid[data-v-134e8272]:before{display:none}.content-grid.full-width[data-v-134e8272]{grid-template-columns:100%}.description[data-v-134e8272]{grid-column:1}.summary[data-v-134e8272]{grid-column:2;grid-row:1/-1}.primary-content[data-v-134e8272]{grid-column:1}.button-cta[data-v-134e8272]{margin-top:2em}[data-v-134e8272] h3{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-134e8272] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-134e8272] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-134e8272] h4{font-size:1.41176rem;line-height:1.16667;font-weight:600;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-134e8272] h4{font-size:1.23529rem;line-height:1.19048;font-weight:600;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-134e8272] h5{font-size:1.29412rem;line-height:1.18182;font-weight:600;letter-spacing:.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-134e8272] h5{font-size:1.17647rem;line-height:1.2;font-weight:600;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-134e8272] h5{font-size:1.05882rem;line-height:1.44444;font-weight:600;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-134e8272] h6{font-size:1rem;line-height:1.47059;font-weight:600;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif} \ No newline at end of file diff --git a/DataCapturing.doccarchive/css/documentation-topic~topic~tutorials-overview.67b822e0.css b/DataCapturing.doccarchive/css/documentation-topic~topic~tutorials-overview.67b822e0.css deleted file mode 100644 index 6b790386..00000000 --- a/DataCapturing.doccarchive/css/documentation-topic~topic~tutorials-overview.67b822e0.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-0137d411]{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-0137d411]{fill:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.svg-icon.icon-inline[data-v-0137d411]{display:inline-block;vertical-align:middle;fill:currentColor}.svg-icon.icon-inline[data-v-0137d411] .svg-icon-stroke{stroke:currentColor}[data-v-0137d411] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-light,var(--color-svg-icon))}.theme-dark[data-v-0137d411] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.label[data-v-5117d474]{font-size:.70588rem;line-height:1.33333;font-weight:600;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.label+[data-v-5117d474]{margin-top:.4em}.deprecated .label[data-v-5117d474]{color:var(--color-aside-deprecated)}.experiment .label[data-v-5117d474]{color:var(--color-aside-experiment)}.important .label[data-v-5117d474]{color:var(--color-aside-important)}.note .label[data-v-5117d474]{color:var(--color-aside-note)}.tip .label[data-v-5117d474]{color:var(--color-aside-tip)}.warning .label[data-v-5117d474]{color:var(--color-aside-warning)}.doc-topic aside[data-v-5117d474]{border-radius:4px;padding:.94118rem;border:0 solid;border-left-width:6px}.doc-topic aside.deprecated[data-v-5117d474]{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-5117d474]{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-5117d474]{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-5117d474]{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-5117d474]{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-5117d474]{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-5117d474]{font-size:1rem;line-height:1.52941;font-weight:600;letter-spacing:-.021em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}code[data-v-05f4a5b7]{speak-punctuation:code}.nav-menu-items[data-v-aa06bfc4]{display:flex;justify-content:flex-end}.nav--in-breakpoint-range .nav-menu-items[data-v-aa06bfc4]{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-aa06bfc4]{opacity:1;transform:translateZ(0);transition-delay:.2s,.4s}.nav--in-breakpoint-range .nav-menu-items[data-v-aa06bfc4]:not(:only-child):not(:last-child){padding-bottom:0}.nav--in-breakpoint-range .nav-menu-items[data-v-aa06bfc4]:not(:only-child):last-child{padding-top:0}.button-cta[data-v-494ad9c8]{border-radius:var(--style-button-borderRadius,4px);background:var(--colors-button-light-background,var(--color-button-background));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;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.button-cta[data-v-494ad9c8]:active{background:var(--colors-button-light-backgroundActive,var(--color-button-background-active));outline:none}.button-cta[data-v-494ad9c8]:hover:not([disabled]){background:var(--colors-button-light-backgroundHover,var(--color-button-background-hover));text-decoration:none}.button-cta[data-v-494ad9c8]:disabled{opacity:.32;cursor:default}.fromkeyboard .button-cta[data-v-494ad9c8]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.button-cta.is-dark[data-v-494ad9c8]{background:var(--colors-button-dark-background,#06f)}.button-cta.is-dark[data-v-494ad9c8]:active{background:var(--colors-button-dark-backgroundActive,var(--color-button-background-active))}.button-cta.is-dark[data-v-494ad9c8]:hover:not([disabled]){background:var(--colors-button-dark-backgroundHover,var(--color-button-background-hover))}.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;letter-spacing:-.022em;font-family: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;letter-spacing:-.016em;font-family: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-193a0b82]{display:flex}.code-number[data-v-193a0b82]{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-193a0b82]:before{content:attr(data-line-number)}.highlighted[data-v-193a0b82]{background:var(--line-highlight,var(--color-code-line-highlight));border-left:4px solid var(--color-code-line-highlight-border)}.highlighted .code-number[data-v-193a0b82]{padding-left:4px}pre[data-v-193a0b82]{padding:14px 0;display:flex;overflow:auto;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal;height:100%}@media only screen and (max-width:735px){pre[data-v-193a0b82]{padding-top:.82353rem}}code[data-v-193a0b82]{display:flex;flex-direction:column;white-space:pre;word-wrap:normal;flex-grow:9999}.code-line-container[data-v-193a0b82]{flex-shrink:0;padding-right:14px}.code-listing[data-v-193a0b82],.container-general[data-v-193a0b82]{display:flex}.code-listing[data-v-193a0b82]{flex-direction:column;min-height:100%;border-radius:4px;overflow:auto}.code-listing.single-line[data-v-193a0b82]{border-radius:4px}.container-general[data-v-193a0b82],pre[data-v-193a0b82]{flex-grow:1}code[data-v-369467b5]{width:100%}.container-general[data-v-369467b5]{display:flex;flex-flow:row wrap}.container-general .code-line[data-v-369467b5]{flex:1 0 auto}.code-line-container[data-v-369467b5]{align-items:center;display:flex;border-left:4px solid transparent;counter-increment:linenumbers;padding-right:14px}.code-number[data-v-369467b5]{font-size:.70588rem;line-height:1.5;font-weight:400;letter-spacing:0;font-family: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-369467b5]:before{content:counter(linenumbers)}.code-line[data-v-369467b5]{display:flex}pre[data-v-369467b5]{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-369467b5]{padding-top:.82353rem}}.collapsible-code-listing[data-v-369467b5]{background:var(--background,var(--color-code-background));border-color:var(--colors-grid,var(--color-grid));color:var(--text,var(--color-code-plain));border-radius:4px;border-style:solid;border-width:1px;counter-reset:linenumbers;font-size:15px}.collapsible-code-listing.single-line[data-v-369467b5]{border-radius:4px}.collapsible[data-v-369467b5]{background:var(--color-code-collapsible-background);color:var(--color-code-collapsible-text)}.collapsed[data-v-369467b5]: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-369467b5]{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}.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:1068px){.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-42371214]{margin:.88235rem 0 1.47059rem 0}.tabnav-items[data-v-42371214]{display:inline-block;margin:0;text-align:center}.tabnav-item[data-v-723a9588]{border-bottom:1px solid;border-color:var(--colors-tabnav-item-border-color,var(--color-tabnav-item-border-color));display:inline-block;list-style:none;padding-left:1.76471rem;margin:0;outline:none}.tabnav-item[data-v-723a9588]:first-child{padding-left:0}.tabnav-item[data-v-723a9588]:nth-child(n+1){margin:0}.tabnav-link[data-v-723a9588]{color:var(--colors-secondary-label,var(--color-secondary-label));font-size:1rem;line-height:1;font-weight:400;letter-spacing:-.021em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:9px 0 11px;margin-top:2px;margin-bottom:4px;text-align:left;text-decoration:none;display:block;position:relative;z-index:0}.tabnav-link[data-v-723a9588]:hover{text-decoration:none}.tabnav-link[data-v-723a9588]:focus{outline-offset:-1px}.tabnav-link[data-v-723a9588]:after{content:"";position:absolute;bottom:-5px;left:0;width:100%;border:1px solid transparent}.tabnav-link.active[data-v-723a9588]{color:var(--colors-text,var(--color-text));cursor:default;z-index:10}.tabnav-link.active[data-v-723a9588]: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-7be42fb4] figcaption+*{margin-top:1rem}.caption[data-v-0bcb8b58]{font-size:.82353rem;line-height:1.5;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}[data-v-0bcb8b58] p{display:inline-block}[data-v-3a939631] img{max-width:100%}*+.table-wrapper,.table-wrapper+*{margin-top:1.6em}.table-wrapper[data-v-358dcd5e]{overflow:auto;-webkit-overflow-scrolling:touch}[data-v-358dcd5e] th{font-weight:600}[data-v-358dcd5e] td,[data-v-358dcd5e] th{border-color:var(--color-fill-gray-tertiary);border-style:solid;border-width:1px 0;padding:.58824rem}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] "}.nav[data-v-aada5b66]{position:sticky;top:0;width:100%;height:3.05882rem;z-index:9997;color:var(--color-nav-color)}@media only screen and (max-width:767px){.nav[data-v-aada5b66]{min-width:320px;height:2.82353rem}}.theme-dark.nav[data-v-aada5b66]{background:none;color:var(--color-nav-dark-color)}.nav__wrapper[data-v-aada5b66]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.nav__background[data-v-aada5b66]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;transition:background-color .5s ease-in}.nav__background[data-v-aada5b66]:after{background-color:var(--color-nav-keyline)}.nav--solid-background .nav__background[data-v-aada5b66]{background-color:var(--color-nav-solid-background);-webkit-backdrop-filter:none;backdrop-filter:none}.nav--is-open.nav--solid-background .nav__background[data-v-aada5b66],.nav--is-sticking.nav--solid-background .nav__background[data-v-aada5b66]{background-color:var(--color-nav-solid-background)}.nav--is-open.theme-dark.nav--solid-background .nav__background[data-v-aada5b66],.nav--is-sticking.theme-dark.nav--solid-background .nav__background[data-v-aada5b66],.theme-dark.nav--solid-background .nav__background[data-v-aada5b66]{background-color:var(--color-nav-dark-solid-background)}.nav--in-breakpoint-range .nav__background[data-v-aada5b66]{min-height:2.82353rem;transition:background-color .5s ease .7s}.nav--is-sticking .nav__background[data-v-aada5b66]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color .5s 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-aada5b66]: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-aada5b66]{-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-aada5b66]{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-aada5b66]{background-color:var(--color-nav-dark-uiblur-stuck)}}.nav--is-open .nav__background[data-v-aada5b66]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color .5s 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-aada5b66]: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-aada5b66]{-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-aada5b66]{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-aada5b66]{background-color:var(--color-nav-dark-uiblur-expanded)}}.theme-dark .nav__background[data-v-aada5b66]:after{background-color:var(--color-nav-dark-keyline)}.nav--is-open.theme-dark .nav__background[data-v-aada5b66]:after,.nav--is-sticking.theme-dark .nav__background[data-v-aada5b66]:after{background-color:var(--color-nav-dark-sticking-expanded-keyline)}.nav__background[data-v-aada5b66]: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-aada5b66]:after{width:100%}}.nav--noborder .nav__background[data-v-aada5b66]:after{display:none}.nav--is-sticking.nav--noborder .nav__background[data-v-aada5b66]:after{display:block}.nav--fullwidth-border .nav__background[data-v-aada5b66]:after,.nav--is-open .nav__background[data-v-aada5b66]:after,.nav--is-sticking .nav__background[data-v-aada5b66]:after,.nav--solid-background .nav__background[data-v-aada5b66]:after{width:100%}.nav-overlay[data-v-aada5b66]{position:fixed;left:0;right:0;top:0;display:block;opacity:0}.nav--is-open .nav-overlay[data-v-aada5b66]{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-aada5b66]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.nav-content[data-v-aada5b66]{display:flex;padding:0 1.29412rem;max-width:980px;margin:0 auto;position:relative;z-index:2;justify-content:space-between}@supports (padding:calc(max(0px))){.nav-content[data-v-aada5b66]{padding-left:calc(max(1.29412rem, env(safe-area-inset-left)));padding-right:calc(max(1.29412rem, env(safe-area-inset-right)))}}@media only screen and (max-width:767px){.nav-content[data-v-aada5b66]{padding:0 .94118rem}}.nav--in-breakpoint-range .nav-content[data-v-aada5b66]{display:grid;grid-template-columns:1fr auto;grid-auto-rows:minmax(-webkit-min-content,-webkit-max-content);grid-auto-rows:minmax(min-content,max-content);grid-template-areas:"title actions" "menu menu"}.nav-menu[data-v-aada5b66]{font-size:.70588rem;line-height:1;font-weight:400;letter-spacing:-.01em;font-family: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-aada5b66]{font-size:.82353rem;line-height:1;font-weight:400;letter-spacing:-.02em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.nav--in-breakpoint-range .nav-menu[data-v-aada5b66]{font-size:.82353rem;line-height:1;font-weight:400;letter-spacing:-.02em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding-top:0;grid-area:menu}.nav-menu-tray[data-v-aada5b66]{width:100%;max-width:100%;align-items:center;display:flex;justify-content:space-between}.nav--in-breakpoint-range .nav-menu-tray[data-v-aada5b66]{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-aada5b66]{max-height:calc(100vh - 5.64706rem);overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:auto;visibility:visible;transition-delay:.2s,0s}.nav--is-opening.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-aada5b66]{overflow-y:hidden}.nav--is-sticking.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-aada5b66]{max-height:calc(100vh - 2.82353rem)}.nav-actions[data-v-aada5b66]{display:flex;align-items:center;max-height:2.82353rem}.nav--in-breakpoint-range .nav-actions[data-v-aada5b66]{grid-area:actions;justify-content:flex-end}.nav-title[data-v-aada5b66]{height:3.05882rem;font-size:1.11765rem;line-height:1.42105;font-weight:400;letter-spacing:.012em;font-family: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-aada5b66]{padding-top:0;height:2.82353rem;width:90%}}.nav--in-breakpoint-range .nav-title[data-v-aada5b66]{grid-area:title}.nav-title[data-v-aada5b66] span{height:100%;line-height:normal}.nav-title a[data-v-aada5b66]{display:inline-block;letter-spacing:inherit;line-height:normal;margin:0;text-decoration:none;white-space:nowrap}.nav-title a[data-v-aada5b66]:hover{text-decoration:none}@media only screen and (max-width:767px){.nav-title a[data-v-aada5b66]{display:flex}}.nav-title[data-v-aada5b66],.nav-title a[data-v-aada5b66]{color:var(--color-figure-gray);transition:color .5s ease-in}.nav--is-open.theme-dark .nav-title[data-v-aada5b66],.nav--is-open.theme-dark .nav-title a[data-v-aada5b66],.nav--is-sticking.theme-dark .nav-title[data-v-aada5b66],.nav--is-sticking.theme-dark .nav-title a[data-v-aada5b66],.theme-dark .nav-title[data-v-aada5b66],.theme-dark .nav-title a[data-v-aada5b66]{color:var(--color-nav-dark-link-color)}.nav-ax-toggle[data-v-aada5b66]{display:none;position:absolute;top:0;left:0;width:1px;height:1px;z-index:10}.nav-ax-toggle[data-v-aada5b66]:focus{outline-offset:-6px;width:100%;height:100%}.nav--in-breakpoint-range .nav-ax-toggle[data-v-aada5b66]{display:block}.nav-menucta[data-v-aada5b66]{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-aada5b66]{display:flex}.nav-menucta-chevron[data-v-aada5b66]{display:block;position:relative;width:100%;height:.70588rem;transition:transform .3s linear;margin-top:2px}.nav-menucta-chevron[data-v-aada5b66]:after,.nav-menucta-chevron[data-v-aada5b66]: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-aada5b66]:before{right:50%;border-radius:.5px 0 0 .5px}.nav-menucta-chevron[data-v-aada5b66]:after{left:50%;border-radius:0 .5px .5px 0}.nav-menucta-chevron[data-v-aada5b66]:before{transform-origin:100% 100%;transform:rotate(40deg) scaleY(1.5)}.nav-menucta-chevron[data-v-aada5b66]:after{transform-origin:0 100%;transform:rotate(-40deg) scaleY(1.5)}.nav--is-open .nav-menucta-chevron[data-v-aada5b66]{transform:scaleY(-1)}.theme-dark .nav-menucta-chevron[data-v-aada5b66]:after,.theme-dark .nav-menucta-chevron[data-v-aada5b66]:before{background:var(--color-nav-dark-link-color)}[data-v-aada5b66] .nav-menu-link{color:var(--color-nav-link-color)}[data-v-aada5b66] .nav-menu-link:hover{color:var(--color-nav-link-color-hover);text-decoration:none}.theme-dark[data-v-aada5b66] .nav-menu-link{color:var(--color-nav-dark-link-color)}.theme-dark[data-v-aada5b66] .nav-menu-link:hover{color:var(--color-nav-dark-link-color-hover)}[data-v-aada5b66] .nav-menu-link.current{color:var(--color-nav-current-link);cursor:default}[data-v-aada5b66] .nav-menu-link.current:hover{color:var(--color-nav-current-link)}.theme-dark[data-v-aada5b66] .nav-menu-link.current,.theme-dark[data-v-aada5b66] .nav-menu-link.current:hover{color:var(--color-nav-dark-current-link)} \ No newline at end of file diff --git a/DataCapturing.doccarchive/css/index.47bc740e.css b/DataCapturing.doccarchive/css/index.47bc740e.css deleted file mode 100644 index 71872c34..00000000 --- a/DataCapturing.doccarchive/css/index.47bc740e.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-4472ec1e]{--toggle-color-fill:var(--color-button-background);--toggle-color-text:var(--color-fill-blue);font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;border:1px solid var(--toggle-color-fill);border-radius:var(--toggle-border-radius-outer,4px);display:inline-flex;padding:1px}@media screen{[data-color-scheme=dark] .color-scheme-toggle[data-v-4472ec1e]{--toggle-color-text:var(--color-figure-blue)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .color-scheme-toggle[data-v-4472ec1e]{--toggle-color-text:var(--color-figure-blue)}}input[data-v-4472ec1e]{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}.text[data-v-4472ec1e]{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-4472ec1e]:hover{cursor:pointer}input:checked+.text[data-v-4472ec1e]{--toggle-color-text:var(--color-button-text);background:var(--toggle-color-fill);border-color:var(--toggle-color-fill)}.footer[data-v-67c823d8]{border-top:1px solid var(--color-grid)}.row[data-v-67c823d8]{margin-left:auto;margin-right:auto;width:980px;display:flex;flex-direction:row-reverse;padding:20px 0}@media only screen and (max-width:1068px){.row[data-v-67c823d8]{width:692px}}@media only screen and (max-width:735px){.row[data-v-67c823d8]{width:87.5%}}.InitialLoadingPlaceholder[data-v-47e4ace8]{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;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;background-color:var(--color-fill);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}h1+h1,h1+h2,h1+h3,h1+h4,h1+h5,h1+h6,h2+h1,h2+h2,h2+h3,h2+h4,h2+h5,h2+h6,h3+h1,h3+h2,h3+h3,h3+h4,h3+h5,h3+h6,h4+h1,h4+h2,h4+h3,h4+h4,h4+h5,h4+h6,h5+h1,h5+h2,h5+h3,h5+h4,h5+h5,h5+h6,h6+h1,h6+h2,h6+h3,h6+h4,h6+h5,h6+h6{margin-top:.4em}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: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}.changed{border:1px solid var(--color-changes-modified);border-radius:4px;position:relative}.changed.has-multiple-lines,.has-multiple-lines .changed{border-radius:4px}.changed:after{right:0;background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:7px;position:absolute;top:0;width:1.17647rem;height:1.17647rem;margin-top:.41176rem;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:7px}.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-gray:#ccc;--color-fill-gray-secondary:#f5f5f5;--color-fill-gray-tertiary:#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:#b0b0b0;--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-gray-secondary);--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-content-table-content-color:var(--color-fill-secondary);--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}@media screen{body[data-color-scheme=dark]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#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-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)}}@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-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#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-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)}}#main{outline-style:none}[data-v-bf0cd418] :focus:not(input):not(textarea):not(select){outline:none}.fromkeyboard[data-v-bf0cd418] :focus:not(input):not(textarea):not(select){outline:4px solid var(--color-focus-color);outline-offset:1px}#app[data-v-bf0cd418]{display:grid;grid-template-rows:auto 1fr auto;min-height:100%}#app[data-v-bf0cd418]>*{min-width:0}#app.hascustomheader[data-v-bf0cd418]{grid-template-rows:auto auto 1fr auto}.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:1068px){.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:1068px){.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;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){.title[data-v-790053de]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family: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;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/css/topic.2eb01958.css b/DataCapturing.doccarchive/css/topic.2eb01958.css deleted file mode 100644 index 87570572..00000000 --- a/DataCapturing.doccarchive/css/topic.2eb01958.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-60ea3af8]{max-width:100%}.title[data-v-60ea3af8]{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-60ea3af8]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-60ea3af8]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-60ea3af8]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-60ea3af8]{color:var(--color-nav-dark-root-subhead)}.nav-menu-item[data-v-f44c239a]{margin-left:1.41176rem;list-style:none;min-width:0}.nav--in-breakpoint-range .nav-menu-item[data-v-f44c239a]{margin-left:0;width:100%;height:2.47059rem}.nav--in-breakpoint-range .nav-menu-item[data-v-f44c239a]:first-child .nav-menu-link{border-top:0}.nav--in-breakpoint-range .nav-menu-item--animated[data-v-f44c239a]{opacity:0;transform:none;transition:.5s ease;transition-property:transform,opacity}.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]{opacity:1;transform:translateZ(0)}.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-f44c239a]:nth-child(7){transition-delay:0s}.mobile-dropdown[data-v-3d58f504]{box-sizing:border-box}.nav--in-breakpoint-range .mobile-dropdown[data-v-3d58f504]{padding-left:.23529rem;padding-right:.23529rem}.mobile-dropdown ul[data-v-3d58f504]{list-style:none}.mobile-dropdown .option[data-v-3d58f504]{cursor:pointer;font-size:.70588rem;padding:.5rem 0;display:block;text-decoration:none;color:inherit}.mobile-dropdown .option[data-v-3d58f504]:focus{outline-offset:0}.mobile-dropdown .option.depth1[data-v-3d58f504]{padding-left:.47059rem}.active[data-v-3d58f504],.tutorial.router-link-active[data-v-3d58f504]{font-weight:600}.active[data-v-3d58f504]:focus,.tutorial.router-link-active[data-v-3d58f504]:focus{outline:none}.chapter-list[data-v-3d58f504]:not(:first-child){margin-top:1rem}.chapter-name[data-v-3d58f504],.tutorial[data-v-3d58f504]{padding:.5rem 0;font-size:1rem;line-height:1.47059;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.section-list[data-v-3d58f504],.tutorial-list[data-v-3d58f504]{padding:0 .58824rem}.chapter-list:last-child .tutorial-list[data-v-3d58f504]:last-child{padding-bottom:10em}.chapter-list[data-v-3d58f504]{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;letter-spacing:-.022em;font-family: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: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;letter-spacing:-.01em;font-family: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;letter-spacing:-.022em;font-family: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-47f38161]{height:30px;display:flex;align-items:center;position:relative;background:var(--color-fill)}.dropdown-small .form-dropdown-toggle[data-v-47f38161]{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-47f38161]:focus{box-shadow:none;border-color:var(--color-dropdown-border)}.fromkeyboard .dropdown-small .form-dropdown-toggle[data-v-47f38161]: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-47f38161]{margin:0}.is-open .form-dropdown-toggle[data-v-47f38161]{border-radius:4px 4px 0 0;border-bottom:none;padding-bottom:1px}.fromkeyboard .is-open .form-dropdown-toggle[data-v-47f38161]{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-47f38161]{margin:0;padding:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dropdown-custom[data-v-47f38161]{border-radius:4px}.dropdown-custom.is-open[data-v-47f38161]{border-radius:4px 4px 0 0}.dropdown-custom[data-v-47f38161] .form-dropdown-content{background:var(--color-fill);position:absolute;right:0;left:0;top:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border:1px solid var(--color-dropdown-border);border-top:none;display:none;overflow-y:auto}.dropdown-custom[data-v-47f38161] .form-dropdown-content.is-open{display:block}.fromkeyboard .dropdown-custom[data-v-47f38161] .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-47f38161] .form-dropdown-content{max-height:calc(100vh - 116px - 3.05882rem)}.nav--is-sticking.nav .dropdown-custom[data-v-47f38161] .form-dropdown-content{max-height:calc(100vh - 3.05882rem - 72px)}.dropdown-custom[data-v-47f38161] .options{list-style:none;margin:0;padding:0 0 20px}.dropdown-custom[data-v-47f38161] .option{cursor:pointer;padding:5px 20px;font-size:12px;line-height:20px;outline:none}.dropdown-custom[data-v-47f38161] .option:hover{background-color:var(--color-fill-tertiary)}.dropdown-custom[data-v-47f38161] .option.option-active{font-weight:600}.fromkeyboard .dropdown-custom[data-v-47f38161] .option:hover{background-color:transparent}.fromkeyboard .dropdown-custom[data-v-47f38161] .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;letter-spacing:-.01em;font-family: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-7138b5bf]{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-7138b5bf] .nav-content{display:grid;grid-template-columns:auto auto 3fr;align-items:center}.nav[data-v-7138b5bf] .nav-menu-tray{width:auto}.nav[data-v-7138b5bf] .nav-menu{padding:0;grid-column:3/5}.nav[data-v-7138b5bf] .nav-menu-item{margin:0}}.dropdown-container[data-v-7138b5bf]{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-7138b5bf]{grid-template-columns:minmax(173px,216px) auto minmax(173px,1fr)}}.separator[data-v-7138b5bf]{height:20px;border-right:1px solid;border-color:var(--color-nav-outlines);margin:0 20px;grid-column:2}.mobile-dropdown-container[data-v-7138b5bf],.nav--in-breakpoint-range.nav .dropdown-container[data-v-7138b5bf],.nav--in-breakpoint-range.nav .separator[data-v-7138b5bf]{display:none}.nav--in-breakpoint-range.nav .mobile-dropdown-container[data-v-7138b5bf]{display:block}.nav[data-v-7138b5bf] .nav-title{grid-column:1;width:90%;padding-top:0}.primary-dropdown[data-v-7138b5bf],.secondary-dropdown[data-v-7138b5bf]{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-7138b5bf] .form-dropdown,.primary-dropdown[data-v-7138b5bf] .form-dropdown:focus,.secondary-dropdown[data-v-7138b5bf] .form-dropdown,.secondary-dropdown[data-v-7138b5bf] .form-dropdown:focus{border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-7138b5bf] .options,.secondary-dropdown[data-v-7138b5bf] .options{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.replay-button[data-v-7335dbb2]{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-7335dbb2]{visibility:visible}.replay-button svg.replay-icon[data-v-7335dbb2]{height:12px;width:12px;margin-left:.3em}[data-v-1b5cc854] img,[data-v-1b5cc854] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}[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;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-3cfe1c35] h2{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family: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;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-3cfe1c35] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-3cfe1c35] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family: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;letter-spacing:-.01em;font-family: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:1068px){.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:1068px){.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;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){h2[data-v-2016b288]{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family: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;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.label[data-v-2016b288]{display:block;font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family: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;letter-spacing:.012em;font-family: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;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-header-text)}@media only screen and (max-width:1068px){.heading[data-v-1898f592]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family: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;letter-spacing:.013em;font-family: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;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:block;margin-bottom:.4em;color:var(--color-eyebrow)}@media only screen and (max-width:1068px){.eyebrow[data-v-1898f592]{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.generic-modal[data-v-0e383dfa]{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-0e383dfa]{align-items:stretch}.modal-fullscreen .container[data-v-0e383dfa]{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-0e383dfa]{padding:20px}.modal-standard.modal-with-close .container[data-v-0e383dfa]{padding-top:80px}.modal-standard .container[data-v-0e383dfa]{padding:50px;border-radius:4px}@media screen{[data-color-scheme=dark] .modal-standard .container[data-v-0e383dfa]{background:#1d1d1f}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .modal-standard .container[data-v-0e383dfa]{background:#1d1d1f}}@media only screen and (max-width:735px){.modal-standard[data-v-0e383dfa]{padding:0;align-items:stretch}.modal-standard .container[data-v-0e383dfa]{margin:20px 0 0;padding:50px 30px;flex:1;width:100%;border-bottom-left-radius:0;border-bottom-right-radius:0}}.backdrop[data-v-0e383dfa]{overflow:auto;background:rgba(0,0,0,.4);-webkit-overflow-scrolling:touch;width:100%;height:100%;position:fixed}.container[data-v-0e383dfa]{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:1068px){.container[data-v-0e383dfa]{width:692px}}@media only screen and (max-width:735px){.container[data-v-0e383dfa]{width:87.5%}}.close[data-v-0e383dfa]{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-0e383dfa]{fill:currentColor;width:100%;height:100%}.theme-dark .container[data-v-0e383dfa]{background:#000}.theme-dark .container .close[data-v-0e383dfa]{color:#b0b0b0}.theme-code .container[data-v-0e383dfa]{background-color:var(--background,var(--color-code-background))}.metadata[data-v-2fa6f125]{display:flex}.item[data-v-2fa6f125]{font-size:.70588rem;line-height:1.33333;font-weight:600;letter-spacing:-.01em;font-family: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;letter-spacing:-.008em;font-family: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;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){.icon[data-v-2fa6f125]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family: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;letter-spacing:.013em;font-family: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;letter-spacing:0;font-family: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;letter-spacing:.007em;font-family: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;letter-spacing:.007em;font-family: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;letter-spacing:-.022em;font-family: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-cb87b2d0]{color:var(--color-tutorial-hero-text);position:relative}.bg[data-v-cb87b2d0],.hero[data-v-cb87b2d0]{background-color:var(--color-tutorial-hero-background)}.bg[data-v-cb87b2d0]{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-cb87b2d0]{margin-left:auto;margin-right:auto;width:980px;padding:80px 0}@media only screen and (max-width:1068px){.row[data-v-cb87b2d0]{width:692px}}@media only screen and (max-width:735px){.row[data-v-cb87b2d0]{width:87.5%}}.col[data-v-cb87b2d0]{z-index:1}[data-v-cb87b2d0] .eyebrow{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-hero-eyebrow)}@media only screen and (max-width:1068px){[data-v-cb87b2d0] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.headline[data-v-cb87b2d0]{font-size:2.82353rem;line-height:1.08333;font-weight:400;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:2rem}@media only screen and (max-width:1068px){.headline[data-v-cb87b2d0]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.headline[data-v-cb87b2d0]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.intro[data-v-cb87b2d0]{font-size:1.23529rem;line-height:1.38095;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){.intro[data-v-cb87b2d0]{font-size:1.11765rem;line-height:1.42105;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content+p[data-v-cb87b2d0]{margin-top:.8em}@media only screen and (max-width:735px){.content+p[data-v-cb87b2d0]{margin-top:8px}}.call-to-action[data-v-cb87b2d0]{display:flex;align-items:center}.call-to-action .cta-icon[data-v-cb87b2d0]{margin-left:.4rem;width:1em;height:1em}.metadata[data-v-cb87b2d0]{margin-top:2rem}.video-asset[data-v-cb87b2d0]{display:grid;height:100vh;margin:0;place-items:center center}.video-asset[data-v-cb87b2d0] video{max-width:1280px;min-width:320px;width:100%}@media only screen and (max-width:735px){.headline[data-v-cb87b2d0]{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;letter-spacing:-.01em;color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-8ec95972],.title[data-v-71da656d]{font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.title[data-v-71da656d]{font-size:1.11765rem;line-height:1.21053;letter-spacing:.012em;color:var(--colors-header-text,var(--color-header-text));margin:25px 0}.question-content[data-v-71da656d] code{font-size:.76471rem;line-height:1.84615;font-weight:400;letter-spacing:-.013em;font-family:Menlo,monospace}.choices[data-v-71da656d]{display:flex;flex-direction:column;padding:0;list-style:none;margin:25px 0}.choice[data-v-71da656d]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;flex:1;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-71da656d] img{max-height:23.52941rem}.choice[data-v-71da656d]:first-of-type{margin-top:0}.choice[data-v-71da656d] code{font-size:.76471rem;line-height:1.84615;font-weight:400;letter-spacing:-.013em;font-family:Menlo,monospace}.controls[data-v-71da656d]{text-align:center;margin-bottom:40px}.controls .button-cta[data-v-71da656d]{margin:.5rem;margin-top:0;padding:.3rem 3rem;min-width:8rem}input[type=radio][data-v-71da656d]{position:absolute;width:100%;left:0;height:100%;opacity:0;z-index:-1}.active[data-v-71da656d]{border-color:var(--color-tutorial-quiz-border-active);box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.active [data-v-71da656d]{color:var(--colors-text,var(--color-text))}.correct[data-v-71da656d]{background:var(--color-form-valid-background);border-color:var(--color-form-valid)}.correct .choice-icon[data-v-71da656d]{fill:var(--color-form-valid)}.incorrect[data-v-71da656d]{background:var(--color-form-error-background);border-color:var(--color-form-error)}.incorrect .choice-icon[data-v-71da656d]{fill:var(--color-form-error)}.correct[data-v-71da656d],.incorrect[data-v-71da656d]{position:relative}.correct .choice-icon[data-v-71da656d],.incorrect .choice-icon[data-v-71da656d]{position:absolute;top:11px;left:10px;font-size:20px;width:1.05em}.disabled[data-v-71da656d]{pointer-events:none}.answer[data-v-71da656d]{margin:.5rem 1.5rem .5rem 0;font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.answer[data-v-71da656d]:last-of-type{margin-bottom:0}[data-v-71da656d] .question>.code-listing{padding:unset}[data-v-71da656d] pre{padding:0}[data-v-71da656d] img{display:block;margin-left:auto;margin-right:auto;max-width:100%}.title[data-v-6bd5c4e9]{font-size:1.88235rem;line-height:1.25;font-weight:400;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-header-text,var(--color-header-text))}@media only screen and (max-width:1068px){.title[data-v-6bd5c4e9]{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-6bd5c4e9]{font-size:1.41176rem;line-height:1.33333;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.title p[data-v-6bd5c4e9]{color:var(--colors-text,var(--color-text))}.assessments[data-v-6bd5c4e9]{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:1068px){.assessments[data-v-6bd5c4e9]{width:692px}}@media only screen and (max-width:735px){.assessments[data-v-6bd5c4e9]{width:87.5%}}.banner[data-v-6bd5c4e9]{padding:40px 0;border-bottom:1px solid;margin-bottom:40px;border-color:var(--colors-grid,var(--color-grid));text-align:center}.success[data-v-6bd5c4e9]{text-align:center;padding-bottom:40px;font-size:1.88235rem;line-height:1.25;font-weight:400;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-text,var(--color-text))}@media only screen and (max-width:1068px){.success[data-v-6bd5c4e9]{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.success[data-v-6bd5c4e9]{font-size:1.41176rem;line-height:1.33333;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.assessments-wrapper[data-v-6bd5c4e9]{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-5f5888a5]{background:var(--colors-article-background,var(--color-article-background))}@media only screen and (max-width:735px){.article[data-v-5f5888a5]{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:1068px){.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:1068px){.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:1068px){.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;letter-spacing:-.022em;font-family: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:3rem}.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;letter-spacing:.011em;font-family: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;letter-spacing:.012em;font-family: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;letter-spacing:.004em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1068px){[data-v-54daa228] .heading{font-size:1.64706rem;line-height:1.28571;font-weight:400;letter-spacing:.007em;font-family: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;letter-spacing:.009em;font-family: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:1068px){.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-1890a2ba]{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-1890a2ba]{height:100vh}.code-preview[data-v-1890a2ba] .code-listing{color:var(--text,var(--color-code-plain))}.code-preview[data-v-1890a2ba] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;letter-spacing:-.01em;font-family:Menlo,monospace}.header[data-v-1890a2ba]{font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family: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:4px 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-1890a2ba]:focus{outline-style:none}#app.fromkeyboard .header[data-v-1890a2ba]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.runtime-preview[data-v-1890a2ba]{--color-runtime-preview-shadow:rgba(0,0,0,0.4);position:absolute;top:0;right:0;background:var(--color-runtime-preview-background);border-radius:4px;margin:1rem;margin-left:0;transition:width .2s ease-in,height .2s ease-in}@media screen{[data-color-scheme=dark] .runtime-preview[data-v-1890a2ba]{--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-1890a2ba]{--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-1890a2ba]{display:flex;flex-direction:column}}.runtime-preview[data-v-1890a2ba]:before{box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow);border-radius:4px;content:"";position:absolute;top:0;right:0;left:0;bottom:0}@media screen{[data-color-scheme=dark] .runtime-preview[data-v-1890a2ba]:before{mix-blend-mode:difference}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .runtime-preview[data-v-1890a2ba]:before{mix-blend-mode:difference}}.runtime-preview-ide[data-v-1890a2ba]{top:0}.runtime-preview-ide .runtime-preview-asset[data-v-1890a2ba] img{background-color:var(--color-runtime-preview-background)}.runtime-preview.collapsed[data-v-1890a2ba]{box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow);width:102px;height:28px}.runtime-preview.collapsed .header[data-v-1890a2ba]{border-radius:4px}.runtime-preview.disabled[data-v-1890a2ba]{box-shadow:0 0 3px 0 transparent}.runtime-preview.disabled .header[data-v-1890a2ba]{color:var(--color-runtime-preview-disabled-text);cursor:auto}.runtime-preview-asset[data-v-1890a2ba]{border-radius:0 0 4px 4px}.runtime-preview-asset[data-v-1890a2ba] img{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.preview-icon[data-v-1890a2ba]{height:.8em;width:.8em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.preview-show[data-v-1890a2ba]{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-b130569c]{background-color:var(--background,var(--color-step-background));padding:14px 0}@media only screen and (max-width:735px){.mobile-code-preview[data-v-b130569c]{display:flex;flex-direction:column}}.runtime-preview-modal-content[data-v-b130569c]{padding:45px 60px 0 60px;min-width:200px}.runtime-preview-modal-content[data-v-b130569c] img:not(.file-icon){border-radius:4px;box-shadow:0 0 3px rgba(0,0,0,.4);min-height:320px;max-height:80vh;width:auto;display:block;margin-bottom:1rem}.runtime-preview-modal-content .runtime-preview-label[data-v-b130569c]{font-size:.70588rem;line-height:1.33333;font-weight:400;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-runtime-preview-text);display:block;text-align:center;padding:.5em}[data-v-b130569c] .code-listing{color:var(--text,var(--color-code-plain))}[data-v-b130569c] .full-code-listing{padding-top:60px;min-height:calc(100vh - 60px)}[data-v-b130569c] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;letter-spacing:-.01em;font-family:Menlo,monospace}.preview-toggle-container[data-v-b130569c]{align-self:flex-end;margin-right:20px}.step-container[data-v-4abdd121]{margin:0}.step-container[data-v-4abdd121]:not(:last-child){margin-bottom:100px}@media only screen and (max-width:735px){.step-container[data-v-4abdd121]:not(:last-child){margin-bottom:80px}}.step[data-v-4abdd121]{position:relative;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-4abdd121]: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-4abdd121],.step[data-v-4abdd121]:focus{outline:none}.step.focused[data-v-4abdd121]:before,.step[data-v-4abdd121]:focus:before{opacity:1}@media only screen and (max-width:735px){.step[data-v-4abdd121]{padding-left:2rem}.step[data-v-4abdd121]:before{opacity:1}}.step-label[data-v-4abdd121]{font-size:.70588rem;line-height:1.33333;font-weight:600;letter-spacing:-.01em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-text,var(--color-step-text));margin-bottom:.4em}.caption[data-v-4abdd121]{border-top:1px solid;border-color:var(--color-step-caption);padding:1rem 0 0 0;margin-top:1rem}.media-container[data-v-4abdd121]{display:none}@media only screen and (max-width:735px){.step[data-v-4abdd121]{margin:0 .58824rem 1.17647rem .58824rem}.step.focused[data-v-4abdd121],.step[data-v-4abdd121]:focus{outline:none}.media-container[data-v-4abdd121]{display:block;position:relative}.media-container[data-v-4abdd121] img,.media-container[data-v-4abdd121] video{max-height:80vh}[data-v-4abdd121] .asset{padding:0 20px}}.steps[data-v-25d30c2c]{position:relative;font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family: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:1068px){.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:1068px){.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:1068px){.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-6e17d3d0]{background-color:var(--colors-text-background,var(--color-tutorial-background))} \ No newline at end of file diff --git a/DataCapturing.doccarchive/css/tutorials-overview.8754eb09.css b/DataCapturing.doccarchive/css/tutorials-overview.8754eb09.css deleted file mode 100644 index 5691d1b0..00000000 --- a/DataCapturing.doccarchive/css/tutorials-overview.8754eb09.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 - */.replay-button[data-v-7335dbb2]{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-7335dbb2]{visibility:visible}.replay-button svg.replay-icon[data-v-7335dbb2]{height:12px;width:12px;margin-left:.3em}[data-v-1b5cc854] img,[data-v-1b5cc854] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.hero[data-v-fc7f508c]{margin-left:auto;margin-right:auto;width:980px;padding-bottom:4.70588rem;padding-top:4.70588rem}@media only screen and (max-width:1068px){.hero[data-v-fc7f508c]{width:692px}}@media only screen and (max-width:735px){.hero[data-v-fc7f508c]{width:87.5%}}.copy-container[data-v-fc7f508c]{margin:0 auto;text-align:center;width:720px}.title[data-v-fc7f508c]{font-size:2.82353rem;line-height:1.08333;font-weight:400;letter-spacing:-.003em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content)}@media only screen and (max-width:1068px){.title[data-v-fc7f508c]{font-size:2.35294rem;line-height:1.1;font-weight:400;letter-spacing:0;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-fc7f508c]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-fc7f508c]{font-size:1.23529rem;line-height:1.38095;font-weight:400;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content)}@media only screen and (max-width:735px){.content[data-v-fc7f508c]{font-size:1.11765rem;line-height:1.42105;font-weight:400;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.meta[data-v-fc7f508c]{color:var(--color-tutorials-overview-content-alt);align-items:center;display:flex;justify-content:center}.meta-content[data-v-fc7f508c]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.meta .timer-icon[data-v-fc7f508c]{margin-right:.35294rem;height:.94118rem;width:.94118rem;fill:var(--color-tutorials-overview-icon)}@media only screen and (max-width:735px){.meta .timer-icon[data-v-fc7f508c]{margin-right:.29412rem;height:.82353rem;width:.82353rem}}.meta .time[data-v-fc7f508c]{font-size:1.11765rem;line-height:1.21053;font-weight:600;letter-spacing:.012em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){.meta .time[data-v-fc7f508c]{font-size:1rem;line-height:1.11765;font-weight:600;letter-spacing:.019em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.title+.content[data-v-fc7f508c]{margin-top:1.47059rem}.content+.meta[data-v-fc7f508c]{margin-top:1.17647rem}.button-cta[data-v-fc7f508c]{margin-top:1.76471rem}*+.asset[data-v-fc7f508c]{margin-top:4.11765rem}@media only screen and (max-width:1068px){.copy-container[data-v-fc7f508c]{width:636px}}@media only screen and (max-width:735px){.hero[data-v-fc7f508c]{padding-bottom:1.76471rem;padding-top:2.35294rem}.copy-container[data-v-fc7f508c]{width:100%}.title+.content[data-v-fc7f508c]{margin-top:.88235rem}.button-cta[data-v-fc7f508c]{margin-top:1.41176rem}*+.asset[data-v-fc7f508c]{margin-top:2.23529rem}}.image[data-v-14577284]{margin-bottom:10px}.name[data-v-14577284]{font-size:1.88235rem;line-height:1.125;font-weight:400;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#f0f0f0;word-break:break-word}@media only screen and (max-width:1068px){.name[data-v-14577284]{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.name[data-v-14577284]{font-size:1.41176rem;line-height:1.16667;font-weight:400;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-14577284]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content-alt);margin-top:10px}.volume-name[data-v-14577284]{padding:50px 60px;text-align:center;background:#161616;margin:2px 0}@media only screen and (max-width:735px){.volume-name[data-v-14577284]{padding:40px 20px}}.document-icon[data-v-56114692]{margin-left:-3px}.tile[data-v-86db603a]{background:#161616;padding:40px 30px;color:var(--color-tutorials-overview-content-alt)}.content[data-v-86db603a] a,a[data-v-86db603a]{color:var(--colors-link,var(--color-tutorials-overview-link))}.icon[data-v-86db603a]{display:block;height:1.47059rem;line-height:1.47059rem;margin-bottom:.58824rem;width:1.47059rem}.icon[data-v-86db603a] svg.svg-icon{width:100%;max-height:100%;fill:var(--color-tutorials-overview-icon)}.icon[data-v-86db603a] svg.svg-icon .svg-icon-stroke{stroke:var(--color-tutorials-overview-content-alt)}.title[data-v-86db603a]{font-size:1.23529rem;line-height:1.19048;font-weight:600;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:.8em}.content[data-v-86db603a],.link[data-v-86db603a]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.content[data-v-86db603a]{color:var(--color-tutorials-overview-content-alt)}.link[data-v-86db603a]{display:block;margin-top:1.17647rem}.link .link-icon[data-v-86db603a]{margin-left:.2em;width:.6em;height:.6em}[data-v-86db603a] .content ul{list-style-type:none;margin-left:0;font-size:.82353rem;line-height:1.28571;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}[data-v-86db603a] .content ul li:before{content:"\200B";position:absolute}[data-v-86db603a] .content li+li{margin-top:8px}@media only screen and (max-width:735px){.tile[data-v-86db603a]{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:1068px){.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;letter-spacing:.013em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#f0f0f0}@media only screen and (max-width:1068px){.title[data-v-49ba6f62]{font-size:1.64706rem;line-height:1.14286;font-weight:400;letter-spacing:.007em;font-family: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;letter-spacing:.009em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-49ba6f62]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#b0b0b0;margin-top:10px}.tutorials-navigation-link[data-v-6bb99205]{color:var(--color-tutorials-overview-navigation-link);transition:color .3s linear}.tutorials-navigation-link[data-v-6bb99205]:hover{text-decoration:none;transition:none;color:var(--color-tutorials-overview-navigation-link-hover)}.tutorials-navigation-link.active[data-v-6bb99205]{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;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.topic-list[data-v-9a8371c6]{list-style-type:none;margin:50px 0 0 0;position:relative}.topic-list li[data-v-9a8371c6]:before{content:"\200B";position:absolute}.topic-list[data-v-9a8371c6]: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-9a8371c6]{font-size:1rem;line-height:1.47059;font-weight:400;letter-spacing:-.022em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:flex;align-items:flex-start}@media only screen and (max-width:735px){.topic[data-v-9a8371c6]{font-size:.82353rem;line-height:1.28571;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.topic+.topic[data-v-9a8371c6]{margin-top:.58824rem}.topic .topic-icon[data-v-9a8371c6]{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-9a8371c6]{fill:var(--color-tutorials-overview-icon);max-width:100%;max-height:100%;width:100%}.container[data-v-9a8371c6]{align-items:baseline;display:flex;justify-content:space-between;width:100%;padding-top:.11765rem}.container[data-v-9a8371c6]:hover{text-decoration:none}.container:hover .link[data-v-9a8371c6]{text-decoration:underline}.timer-icon[data-v-9a8371c6]{margin-right:.29412rem;height:.70588rem;width:.70588rem;fill:var(--color-tutorials-overview-icon)}.time[data-v-9a8371c6]{font-size:.82353rem;line-height:1.28571;font-weight:400;letter-spacing:-.016em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content-alt);align-items:center;display:inline-flex}.link[data-v-9a8371c6]{padding-right:.58824rem;color:var(--colors-link,var(--color-tutorials-overview-link))}@media only screen and (min-width:768px) and (max-width:1068px){.topic-list[data-v-9a8371c6]{margin-top:2.35294rem}}@media only screen and (max-width:735px){.topic-list[data-v-9a8371c6]{margin-top:1.76471rem}.topic[data-v-9a8371c6]{height:auto;align-items:flex-start}.topic+.topic[data-v-9a8371c6]{margin-top:1.17647rem}.topic .topic-icon[data-v-9a8371c6]{top:.29412rem;margin-right:.76471rem}.container[data-v-9a8371c6]{flex-wrap:wrap;padding-top:0}.link[data-v-9a8371c6],.time[data-v-9a8371c6]{flex-basis:100%}.time[data-v-9a8371c6]{margin-top:.29412rem}}.chapter[data-v-1d13969f]:focus{outline:none!important}.info[data-v-1d13969f]{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.name[data-v-1d13969f]{font-size:1.23529rem;line-height:1.19048;font-weight:600;letter-spacing:.011em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#f0f0f0}.name-text[data-v-1d13969f]{word-break:break-word}.eyebrow[data-v-1d13969f]{font-size:1rem;line-height:1.23529;font-weight:400;letter-spacing:-.022em;color:var(--color-tutorials-overview-eyebrow);display:block;font-weight:600;margin-bottom:5px}.content[data-v-1d13969f],.eyebrow[data-v-1d13969f]{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.content[data-v-1d13969f]{font-size:.82353rem;line-height:1.42857;font-weight:400;letter-spacing:-.016em;color:var(--color-tutorials-overview-content-alt)}.asset[data-v-1d13969f]{flex:0 0 190px}.intro[data-v-1d13969f]{flex:0 1 360px}@media only screen and (min-width:768px) and (max-width:1068px){.asset[data-v-1d13969f]{flex:0 0 130px}.intro[data-v-1d13969f]{flex:0 1 260px}}@media only screen and (max-width:767px){.intro[data-v-1d13969f]{flex:0 1 340px}}@media only screen and (max-width:735px){.info[data-v-1d13969f]{display:block;text-align:center}.asset[data-v-1d13969f]{margin:0 45px}.eyebrow[data-v-1d13969f]{margin-bottom:7px}.intro[data-v-1d13969f]{margin-top:40px}}.tile[data-v-2129f58c]{background:#161616;margin:2px 0;padding:50px 60px}.asset[data-v-2129f58c]{margin-bottom:10px}@media only screen and (min-width:768px) and (max-width:1068px){.tile[data-v-2129f58c]{padding:40px 30px}}@media only screen and (max-width:735px){.volume[data-v-2129f58c]{border-radius:0}.tile[data-v-2129f58c]{padding:40px 20px}}.learning-path[data-v-48bfa85c]{background:#000;padding:4.70588rem 0}.main-container[data-v-48bfa85c]{margin-left:auto;margin-right:auto;width:980px;align-items:stretch;display:flex;justify-content:space-between}@media only screen and (max-width:1068px){.main-container[data-v-48bfa85c]{width:692px}}@media only screen and (max-width:735px){.main-container[data-v-48bfa85c]{width:87.5%}}.ide .main-container[data-v-48bfa85c]{justify-content:center}.secondary-content-container[data-v-48bfa85c]{flex:0 0 200px;width:200px}.tutorials-navigation[data-v-48bfa85c]{position:sticky;top:7.76471rem}.primary-content-container[data-v-48bfa85c]{flex:0 1 720px;max-width:100%}.content-sections-container .content-section[data-v-48bfa85c]{border-radius:12px;overflow:hidden}.content-sections-container .content-section+.content-section[data-v-48bfa85c]{margin-top:1.17647rem}@media only screen and (min-width:768px) and (max-width:1068px){.learning-path[data-v-48bfa85c]{padding:2.35294rem 0}.primary-content-container[data-v-48bfa85c]{flex-basis:auto;margin-left:1.29412rem}.secondary-content-container[data-v-48bfa85c]{flex:0 0 180px;width:180px}}@media only screen and (max-width:767px){.secondary-content-container[data-v-48bfa85c]{display:none}}@media only screen and (max-width:735px){.content-sections-container .content-section[data-v-48bfa85c]{border-radius:0}.content-sections-container .content-section.volume[data-v-48bfa85c]{margin-top:1.17647rem}.learning-path[data-v-48bfa85c]{padding:0}.main-container[data-v-48bfa85c]{width:100%}}.nav-title-content[data-v-60ea3af8]{max-width:100%}.title[data-v-60ea3af8]{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-60ea3af8]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-60ea3af8]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-60ea3af8]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-60ea3af8]{color:var(--color-nav-dark-root-subhead)}.tutorials-navigation[data-v-07700f98]{display:none}@media only screen and (max-width:767px){.tutorials-navigation[data-v-07700f98]{display:block}}.nav[data-v-07700f98] .nav-menu .nav-menu-items{padding:12px 0 44px 0}@media only screen and (min-width:768px){.nav[data-v-07700f98] .nav-menu .nav-menu-items{display:none}}@media only screen and (min-width:736px) and (max-width:1068px){.nav[data-v-07700f98] .nav-menu .nav-menu-items{padding-top:25px}}@media only screen and (min-width:320px) and (max-width:735px){.nav[data-v-07700f98] .nav-menu .nav-menu-items{padding-top:18px;padding-bottom:40px}}.tutorials-overview[data-v-0c0b1eea]{height:100%}.tutorials-overview .radial-gradient[data-v-0c0b1eea]{margin-top:-3.05882rem;padding-top:3.05882rem;background:var(--color-tutorials-overview-background)}@media only screen and (max-width:735px){.tutorials-overview .radial-gradient[data-v-0c0b1eea]{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/DataCapturing.doccarchive/data/documentation/datacapturing.json b/DataCapturing.doccarchive/data/documentation/datacapturing.json deleted file mode 100644 index 3d58c9f1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":""}],"kind":"symbol","metadata":{"roleHeading":"Framework","externalID":"DataCapturing","title":"DataCapturing","symbolKind":"module","role":"collection","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[[]]},"topicSections":[{"title":"Classes","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess"]},{"title":"Protocols","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner"]},{"title":"Structures","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementFile","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry"]},{"title":"Enumerations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError":{"role":"symbol","title":"FileSupportError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSupportError"}],"abstract":[{"type":"text","text":"Errors created by the Cyface SDK associated with accessing the file system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSupportError"}],"url":"\/documentation\/datacapturing\/filesupporterror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy":{"role":"symbol","title":"DefaultDistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"Calculates the distance between two locations based on the internal distance function provided by iOS."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackCleaner":{"role":"symbol","title":"TrackCleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackCleaner"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackCleaner"}],"url":"\/documentation\/datacapturing\/trackcleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DeletionCleaner":{"role":"symbol","title":"DeletionCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeletionCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing each synchronized measurement from the database completely."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeletionCleaner"}],"url":"\/documentation\/datacapturing\/deletioncleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFile":{"role":"symbol","title":"SensorValueFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFile"}],"abstract":[{"type":"text","text":"Struct implementing the "},{"type":"codeVoice","code":"FileSupport"},{"type":"text","text":" protocol to store sensor values to a file in Cyface binary format."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFile"}],"url":"\/documentation\/datacapturing\/sensorvaluefile"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Cleaner":{"role":"symbol","title":"Cleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Cleaner"}],"abstract":[{"type":"text","text":"Implementations of this protocol are responsible for cleaning the database after a synchronization run."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Cleaner"}],"url":"\/documentation\/datacapturing\/cleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SessionRegistry":{"role":"symbol","title":"SessionRegistry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionRegistry"}],"abstract":[{"type":"text","text":"Stores the open sessions, this app knows about."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionRegistry"}],"url":"\/documentation\/datacapturing\/sessionregistry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status":{"deprecated":true,"role":"symbol","title":"Status","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[{"type":"text","text":"The status returned by asynchronous callback handlers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/datacapturing\/status"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption":{"role":"symbol","title":"DiskConsumption","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DiskConsumption"}],"abstract":[{"type":"text","text":"Objects of this class represent the current disk (or rather SD card) space used and available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DiskConsumption"}],"url":"\/documentation\/datacapturing\/diskconsumption"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy":{"role":"symbol","title":"DistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"DistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"This protocol provides a way to calculate the distance between two geo locations in meters."},{"type":"text","text":" "},{"type":"text","text":"Different implementations are possible."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/distancecalculationstrategy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/AccelerationPointRemovalCleaner":{"role":"symbol","title":"AccelerationPointRemovalCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing only the accelerations from each synchronized measurement, thus keeping the track information available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"url":"\/documentation\/datacapturing\/accelerationpointremovalcleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Authenticator":{"role":"symbol","title":"Authenticator","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Authenticator"}],"abstract":[{"type":"text","text":"An "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":" provides functionality to authenticate this app on a servoer for receiving the captured data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Authenticator"}],"url":"\/documentation\/datacapturing\/authenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator":{"role":"symbol","title":"StaticAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"StaticAuthenticator"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"StaticAuthenticator"},{"type":"text","text":" always does authentication using the same Java Web Token (JWT)."},{"type":"text","text":" "},{"type":"text","text":"This token is provided as a fixed value and never changes."},{"type":"text","text":" "},{"type":"text","text":"The creator of an object of this class needs to make sure, that the token is valid."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StaticAuthenticator"}],"url":"\/documentation\/datacapturing\/staticauthenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService":{"role":"symbol","title":"MovebisDataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovebisDataCapturingService"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" implementation that provides the ability to capture locations"},{"type":"text","text":" "},{"type":"text","text":"before an actual measurement has been started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovebisDataCapturingService"}],"url":"\/documentation\/datacapturing\/movebisdatacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue":{"role":"symbol","title":"SensorValue","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValue"}],"url":"\/documentation\/datacapturing\/sensorvalue"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementFile":{"role":"symbol","title":"MeasurementFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementFile"}],"abstract":[{"type":"text","text":"Struct implementing the "},{"type":"codeVoice","code":"FileSupport"},{"type":"text","text":" protocol to serialize whole measurements to a file in Cyface binary format."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementFile"}],"url":"\/documentation\/datacapturing\/measurementfile"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol":{"role":"symbol","title":"CoreDataMigratorProtocol","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"abstract":[{"type":"text","text":"A protocol implemented by classes responsible for migrating from old to new data models."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"url":"\/documentation\/datacapturing\/coredatamigratorprotocol"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/UploadProcess":{"role":"symbol","title":"UploadProcess","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadProcess"}],"abstract":[{"type":"text","text":"A state machine for the complete upload process of a single measurement from this device to a Cyface Data Collector service."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadProcess"}],"url":"\/documentation\/datacapturing\/uploadprocess"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator":{"role":"symbol","title":"CoreDataMigrator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrator"}],"abstract":[{"type":"text","text":"An implementation of the "},{"type":"codeVoice","code":"CoreDataMigratorProtocol"},{"type":"text","text":" for the Cyface data model, as used by the Cyface iOS SDK."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrator"}],"url":"\/documentation\/datacapturing\/coredatamigrator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultTrackCleaner":{"role":"symbol","title":"DefaultTrackCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultTrackCleaner"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultTrackCleaner"}],"url":"\/documentation\/datacapturing\/defaulttrackcleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager":{"role":"symbol","title":"CoreDataManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}],"url":"\/documentation\/datacapturing\/coredatamanager"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData":{"role":"symbol","title":"InconsistentData","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}],"url":"\/documentation\/datacapturing\/inconsistentdata"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator":{"role":"symbol","title":"CredentialsAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"abstract":[{"type":"text","text":"An authenticator using a combination of "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" to authenticate against a Cyface data collector server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CredentialsAuthenticator"}],"url":"\/documentation\/datacapturing\/credentialsauthenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType":{"role":"symbol","title":"SensorValueFileType","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFileType"}],"abstract":[{"type":"text","text":"One type of a sensor value file, such as a file for accelerations, rotations or directions."},{"type":"text","text":" "},{"type":"text","text":"This class may not be instantiated directly."},{"type":"text","text":" "},{"type":"text","text":"The only valid instances are provided as static properties."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFileType"}],"url":"\/documentation\/datacapturing\/sensorvaluefiletype"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/accelerationpointremovalcleaner.json b/DataCapturing.doccarchive/data/documentation/datacapturing/accelerationpointremovalcleaner.json deleted file mode 100644 index 019b140e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/accelerationpointremovalcleaner.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.3.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/accelerationpointremovalcleaner"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A cleaner removing only the accelerations from each synchronized measurement, thus keeping the track information available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"title":"AccelerationPointRemovalCleaner","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing31AccelerationPointRemovalCleanerC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner\/init()"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner\/clean(measurement:from:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/AccelerationPointRemovalCleaner/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Public default constructor required to create instances of this class."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/accelerationpointremovalcleaner\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Cleaner":{"role":"symbol","title":"Cleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Cleaner"}],"abstract":[{"type":"text","text":"Implementations of this protocol are responsible for cleaning the database after a synchronization run."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Cleaner"}],"url":"\/documentation\/datacapturing\/cleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/AccelerationPointRemovalCleaner/clean(measurement:from:)":{"role":"symbol","title":"clean(measurement:from:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Cleans the database after a measurement has been synchronized."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner\/clean(measurement:from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/accelerationpointremovalcleaner\/clean(measurement:from:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/AccelerationPointRemovalCleaner":{"role":"symbol","title":"AccelerationPointRemovalCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing only the accelerations from each synchronized measurement, thus keeping the track information available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"url":"\/documentation\/datacapturing\/accelerationpointremovalcleaner"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/accelerationpointremovalcleaner/clean(measurement:from:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/accelerationpointremovalcleaner/clean(measurement:from:).json deleted file mode 100644 index 31bf81e5..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/accelerationpointremovalcleaner/clean(measurement:from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"persistenceLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC","text":"PersistenceLayer"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"measurement","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The measurement to clean."}]}]},{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":" to call for cleaning the data."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/accelerationpointremovalcleaner\/clean(measurement:from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner\/clean(measurement:from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Cleans the database after a measurement has been synchronized."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"clean(measurement:from:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing31AccelerationPointRemovalCleanerC5clean11measurement4fromys5Int64V_AA16PersistenceLayerCtKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/AccelerationPointRemovalCleaner/clean(measurement:from:)":{"role":"symbol","title":"clean(measurement:from:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Cleans the database after a measurement has been synchronized."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner\/clean(measurement:from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/accelerationpointremovalcleaner\/clean(measurement:from:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/AccelerationPointRemovalCleaner":{"role":"symbol","title":"AccelerationPointRemovalCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing only the accelerations from each synchronized measurement, thus keeping the track information available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"url":"\/documentation\/datacapturing\/accelerationpointremovalcleaner"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/accelerationpointremovalcleaner/init().json b/DataCapturing.doccarchive/data/documentation/datacapturing/accelerationpointremovalcleaner/init().json deleted file mode 100644 index 6eee9c9e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/accelerationpointremovalcleaner/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/accelerationpointremovalcleaner\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Public default constructor required to create instances of this class."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing31AccelerationPointRemovalCleanerCACycfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/AccelerationPointRemovalCleaner":{"role":"symbol","title":"AccelerationPointRemovalCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing only the accelerations from each synchronized measurement, thus keeping the track information available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"url":"\/documentation\/datacapturing\/accelerationpointremovalcleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/AccelerationPointRemovalCleaner/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Public default constructor required to create instances of this class."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/accelerationpointremovalcleaner\/init()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/authenticator.json b/DataCapturing.doccarchive/data/documentation/datacapturing/authenticator.json deleted file mode 100644 index 3cfe84c7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/authenticator.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Authenticator"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/authenticator"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":" provides functionality to authenticate this app on a servoer for receiving the captured data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Authenticator"}],"title":"Authenticator","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:13DataCapturing13AuthenticatorP","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"Authenticator"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator\/authenticate(onSuccess:onFailure:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator":{"role":"symbol","title":"StaticAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"StaticAuthenticator"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"StaticAuthenticator"},{"type":"text","text":" always does authentication using the same Java Web Token (JWT)."},{"type":"text","text":" "},{"type":"text","text":"This token is provided as a fixed value and never changes."},{"type":"text","text":" "},{"type":"text","text":"The creator of an object of this class needs to make sure, that the token is valid."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StaticAuthenticator"}],"url":"\/documentation\/datacapturing\/staticauthenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Authenticator/authenticate(onSuccess:onFailure:)":{"role":"symbol","title":"authenticate(onSuccess:onFailure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Runs the authentication and calls the appropriate function "},{"type":"codeVoice","code":"onSuccess"},{"type":"text","text":" or "},{"type":"codeVoice","code":"onFailure"},{"type":"text","text":" when finished."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator\/authenticate(onSuccess:onFailure:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/authenticator\/authenticate(onsuccess:onfailure:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Authenticator":{"role":"symbol","title":"Authenticator","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Authenticator"}],"abstract":[{"type":"text","text":"An "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":" provides functionality to authenticate this app on a servoer for receiving the captured data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Authenticator"}],"url":"\/documentation\/datacapturing\/authenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator":{"role":"symbol","title":"CredentialsAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"abstract":[{"type":"text","text":"An authenticator using a combination of "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" to authenticate against a Cyface data collector server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CredentialsAuthenticator"}],"url":"\/documentation\/datacapturing\/credentialsauthenticator"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/authenticator/authenticate(onsuccess:onfailure:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/authenticator/authenticate(onsuccess:onfailure:).json deleted file mode 100644 index 5a917416..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/authenticator/authenticate(onsuccess:onfailure:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": "},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": "},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"onSuccess: A closure called and supplied with the resulting authentication token, when authentication was successful."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"onFailure: A closure called and supplied with the causing error, when authentication was not successful."}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/authenticator\/authenticate(onsuccess:onfailure:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator\/authenticate(onSuccess:onFailure:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Runs the authentication and calls the appropriate function "},{"type":"codeVoice","code":"onSuccess"},{"type":"text","text":" or "},{"type":"codeVoice","code":"onFailure"},{"type":"text","text":" when finished."}],"kind":"symbol","metadata":{"role":"symbol","title":"authenticate(onSuccess:onFailure:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:13DataCapturing13AuthenticatorP12authenticate9onSuccess0E7FailureyySSc_ys5Error_pctF","required":true,"modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Authenticator/authenticate(onSuccess:onFailure:)":{"role":"symbol","title":"authenticate(onSuccess:onFailure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Runs the authentication and calls the appropriate function "},{"type":"codeVoice","code":"onSuccess"},{"type":"text","text":" or "},{"type":"codeVoice","code":"onFailure"},{"type":"text","text":" when finished."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator\/authenticate(onSuccess:onFailure:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/authenticator\/authenticate(onsuccess:onfailure:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Authenticator":{"role":"symbol","title":"Authenticator","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Authenticator"}],"abstract":[{"type":"text","text":"An "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":" provides functionality to authenticate this app on a servoer for receiving the captured data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Authenticator"}],"url":"\/documentation\/datacapturing\/authenticator"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/cleaner.json b/DataCapturing.doccarchive/data/documentation/datacapturing/cleaner.json deleted file mode 100644 index bf4312e6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/cleaner.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Cleaner"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.3.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/cleaner"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Implementations of this protocol are responsible for cleaning the database after a synchronization run."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Cleaner"}],"title":"Cleaner","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:13DataCapturing7CleanerP","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"Cleaner"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner\/clean(measurement:from:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DeletionCleaner":{"role":"symbol","title":"DeletionCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeletionCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing each synchronized measurement from the database completely."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeletionCleaner"}],"url":"\/documentation\/datacapturing\/deletioncleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Cleaner":{"role":"symbol","title":"Cleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Cleaner"}],"abstract":[{"type":"text","text":"Implementations of this protocol are responsible for cleaning the database after a synchronization run."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Cleaner"}],"url":"\/documentation\/datacapturing\/cleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/AccelerationPointRemovalCleaner":{"role":"symbol","title":"AccelerationPointRemovalCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing only the accelerations from each synchronized measurement, thus keeping the track information available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/AccelerationPointRemovalCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"AccelerationPointRemovalCleaner"}],"url":"\/documentation\/datacapturing\/accelerationpointremovalcleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Cleaner/clean(measurement:from:)":{"role":"symbol","title":"clean(measurement:from:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Cleans the database after a measurement has been synchronized."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner\/clean(measurement:from:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/cleaner\/clean(measurement:from:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/cleaner/clean(measurement:from:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/cleaner/clean(measurement:from:).json deleted file mode 100644 index 659309f1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/cleaner/clean(measurement:from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"persistenceLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC","text":"PersistenceLayer"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"measurement","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The measurement to clean."}]}]},{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":" to call for cleaning the data."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/cleaner\/clean(measurement:from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner\/clean(measurement:from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Cleans the database after a measurement has been synchronized."}],"kind":"symbol","metadata":{"role":"symbol","title":"clean(measurement:from:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"method","externalID":"s:13DataCapturing7CleanerP5clean11measurement4fromys5Int64V_AA16PersistenceLayerCtKF","required":true,"modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Cleaner/clean(measurement:from:)":{"role":"symbol","title":"clean(measurement:from:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Cleans the database after a measurement has been synchronized."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner\/clean(measurement:from:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/cleaner\/clean(measurement:from:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Cleaner":{"role":"symbol","title":"Cleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Cleaner"}],"abstract":[{"type":"text","text":"Implementations of this protocol are responsible for cleaning the database after a synchronization run."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Cleaner"}],"url":"\/documentation\/datacapturing\/cleaner"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager.json deleted file mode 100644 index 7e744f94..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Please call "},{"type":"codeVoice","code":"setup(bundle:completionClosure:)"},{"type":"text","text":" before using an object of this class."},{"type":"text","text":" "},{"type":"text","text":"That call will run data migration if necessary and might take some time depending on the amount of data that must be migrated."},{"type":"text","text":" "},{"type":"text","text":"So it might be a good idea to run "},{"type":"codeVoice","code":"setup(bundle:completionClosure:)"},{"type":"text","text":" on a background thread."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"3.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"4.0.0"}]}],"type":"aside","name":"Since"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"You must call "},{"type":"codeVoice","code":"setup(bundle:completionClosure:)"},{"type":"text","text":" only once in your application. Usually this should happen in AddDelegate.application. Do not load or save any data before the call to "},{"type":"codeVoice","code":"setup(bundle:completionClosure:)"},{"type":"text","text":" has finished."}]}],"type":"aside","name":"Attention"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamanager"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"title":"CoreDataManager","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing04CoreA7ManagerC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/init(storeType:migrator:)"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/setup(bundle:completionClosure:)"]},{"title":"Type Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/load(model:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager":{"role":"symbol","title":"CoreDataManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}],"url":"\/documentation\/datacapturing\/coredatamanager"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager/setup(bundle:completionClosure:)":{"role":"symbol","title":"setup(bundle:completionClosure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"bundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":", "},{"kind":"externalParam","text":"completionClosure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Connects this "},{"type":"codeVoice","code":"CoreDataManager"},{"type":"text","text":" to the underlying storage, possibly migrating the data model to the current version."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/setup(bundle:completionClosure:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamanager\/setup(bundle:completionclosure:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager/init(storeType:migrator:)":{"role":"symbol","title":"init(storeType:migrator:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"storeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"migrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigratorProtocol","preciseIdentifier":"s:13DataCapturing04CoreA16MigratorProtocolP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Creates a new instance of the "},{"type":"codeVoice","code":"CoreDataManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/init(storeType:migrator:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamanager\/init(storetype:migrator:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager/load(model:)":{"role":"symbol","title":"load(model:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"model"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"NSManagedObjectModel","preciseIdentifier":"c:objc(cs)NSManagedObjectModel"}],"abstract":[{"type":"text","text":"Load the specified "},{"type":"codeVoice","code":"NSManagedObjectModel"},{"type":"text","text":" from disk."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/load(model:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamanager\/load(model:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager/init(storetype:migrator:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager/init(storetype:migrator:).json deleted file mode 100644 index ce25ed75..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager/init(storetype:migrator:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"convenience"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"storeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = NSSQLiteStoreType, "},{"kind":"externalParam","text":"migrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol","preciseIdentifier":"s:13DataCapturing04CoreA16MigratorProtocolP","text":"CoreDataMigratorProtocol"},{"kind":"text","text":" = CoreDataMigrator()) "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"storeType","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The type of the store to use. In production this should usually be "},{"type":"codeVoice","code":"NSSQLiteStoreType"},{"type":"text","text":". In a test environment you might use "},{"type":"codeVoice","code":"NSInMemoryStoreType"},{"type":"text","text":". Both values are defined by "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":"."}]}]},{"name":"migrator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An object to migrate between different Cyface model versions."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Please call "},{"type":"codeVoice","code":"setup(bundle:completionClosure:)"},{"type":"text","text":" before using the "},{"type":"codeVoice","code":"NSManagedObjectContext"},{"type":"text","text":" instances, provided by this instance."}]}],"type":"aside","name":"Attention"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"CoreDataError.invalidModelUrl"},{"type":"text","text":", "},{"type":"codeVoice","code":"CoreDataError.modelNotAvailable"}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamanager\/init(storetype:migrator:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/init(storeType:migrator:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new instance of the "},{"type":"codeVoice","code":"CoreDataManager"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"storeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"migrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigratorProtocol","preciseIdentifier":"s:13DataCapturing04CoreA16MigratorProtocolP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"init(storeType:migrator:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing04CoreA7ManagerC9storeType8migratorACSS_AA0cA16MigratorProtocol_ptKcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager/init(storeType:migrator:)":{"role":"symbol","title":"init(storeType:migrator:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"storeType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"migrator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigratorProtocol","preciseIdentifier":"s:13DataCapturing04CoreA16MigratorProtocolP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Creates a new instance of the "},{"type":"codeVoice","code":"CoreDataManager"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/init(storeType:migrator:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamanager\/init(storetype:migrator:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager":{"role":"symbol","title":"CoreDataManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}],"url":"\/documentation\/datacapturing\/coredatamanager"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol":{"role":"symbol","title":"CoreDataMigratorProtocol","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"abstract":[{"type":"text","text":"A protocol implemented by classes responsible for migrating from old to new data models."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"url":"\/documentation\/datacapturing\/coredatamigratorprotocol"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager/load(model:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager/load(model:).json deleted file mode 100644 index 163da40f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager/load(model:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"model"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" = \"CyfaceModel\") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"NSManagedObjectModel","preciseIdentifier":"c:objc(cs)NSManagedObjectModel"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamanager\/load(model:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/load(model:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Load the specified "},{"type":"codeVoice","code":"NSManagedObjectModel"},{"type":"text","text":" from disk."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"model"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"NSManagedObjectModel","preciseIdentifier":"c:objc(cs)NSManagedObjectModel"}],"title":"load(model:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing04CoreA7ManagerC4load5modelSo20NSManagedObjectModelCSS_tKFZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager/load(model:)":{"role":"symbol","title":"load(model:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"model"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"NSManagedObjectModel","preciseIdentifier":"c:objc(cs)NSManagedObjectModel"}],"abstract":[{"type":"text","text":"Load the specified "},{"type":"codeVoice","code":"NSManagedObjectModel"},{"type":"text","text":" from disk."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/load(model:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamanager\/load(model:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager":{"role":"symbol","title":"CoreDataManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}],"url":"\/documentation\/datacapturing\/coredatamanager"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager/setup(bundle:completionclosure:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager/setup(bundle:completionclosure:).json deleted file mode 100644 index 1a0a96c7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamanager/setup(bundle:completionclosure:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"bundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":", "},{"kind":"externalParam","text":"completionClosure"},{"kind":"text","text":": "},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"bundle","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The bundle containing the data model."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"CoreDataError.missingModelUrl"}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamanager\/setup(bundle:completionclosure:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/setup(bundle:completionClosure:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Connects this "},{"type":"codeVoice","code":"CoreDataManager"},{"type":"text","text":" to the underlying storage, possibly migrating the data model to the current version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"bundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":", "},{"kind":"externalParam","text":"completionClosure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"setup(bundle:completionClosure:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing04CoreA7ManagerC5setup6bundle17completionClosureySo8NSBundleC_ys5Error_pSgctKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager":{"role":"symbol","title":"CoreDataManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}],"url":"\/documentation\/datacapturing\/coredatamanager"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager/setup(bundle:completionClosure:)":{"role":"symbol","title":"setup(bundle:completionClosure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setup"},{"kind":"text","text":"("},{"kind":"externalParam","text":"bundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":", "},{"kind":"externalParam","text":"completionClosure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":"?) -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Connects this "},{"type":"codeVoice","code":"CoreDataManager"},{"type":"text","text":" to the underlying storage, possibly migrating the data model to the current version."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager\/setup(bundle:completionClosure:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamanager\/setup(bundle:completionclosure:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion.json deleted file mode 100644 index 61f37d5d..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.4.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"4.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/s12CaseIterableP","doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH","doc:\/\/org.cocoapods.DataCapturing\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"title":"CoreDataMigrationVersion","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:13DataCapturing04CoreA16MigrationVersionO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version1","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version2","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version3","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version4","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version5","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version6","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version7","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version8","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version9"]},{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/Equatable-Implementations","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version1":{"role":"symbol","title":"CoreDataMigrationVersion.version1","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version1"}],"abstract":[{"type":"text","text":"The first and oldest version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version1","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version1"},"doc://org.cocoapods.DataCapturing/s12CaseIterableP":{"type":"unresolvable","title":"Swift.CaseIterable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s12CaseIterableP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version5":{"role":"symbol","title":"CoreDataMigrationVersion.version5","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version5"}],"abstract":[{"type":"text","text":"The fifth version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version5","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version5"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version7":{"role":"symbol","title":"CoreDataMigrationVersion.version7","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version7"}],"abstract":[{"type":"text","text":"The seventh version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version7","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version7"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/rawrepresentable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version2":{"role":"symbol","title":"CoreDataMigrationVersion.version2","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version2"}],"abstract":[{"type":"text","text":"The second version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version2","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version2"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/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":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/init(rawvalue:)"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version9":{"role":"symbol","title":"CoreDataMigrationVersion.version9","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version9"}],"abstract":[{"type":"text","text":"The ninth version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version9","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version9"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version4":{"role":"symbol","title":"CoreDataMigrationVersion.version4","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version4"}],"abstract":[{"type":"text","text":"The fourth version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version4","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version4"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version8":{"role":"symbol","title":"CoreDataMigrationVersion.version8","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version8"}],"abstract":[{"type":"text","text":"The eight version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version8","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version8"},"doc://org.cocoapods.DataCapturing/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SY"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version3":{"role":"symbol","title":"CoreDataMigrationVersion.version3","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version3"}],"abstract":[{"type":"text","text":"The third version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version3","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version3"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version6":{"role":"symbol","title":"CoreDataMigrationVersion.version6","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version6"}],"abstract":[{"type":"text","text":"The sixth version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version6","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version6"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/!=(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/!=(_:_:).json deleted file mode 100644 index ddf81c71..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/!=(_:_:)","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:13DataCapturing04CoreA16MigrationVersionO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/Equatable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/equatable-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/equatable-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/equatable-implementations.json deleted file mode 100644 index 063af3c3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/!=(_:_:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/hash(into:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/hash(into:).json deleted file mode 100644 index 4d59bf95..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/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:13DataCapturing04CoreA16MigrationVersionO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/RawRepresentable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/rawrepresentable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/hash(into:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/hashvalue.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/hashvalue.json deleted file mode 100644 index 54b32d10..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/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:13DataCapturing04CoreA16MigrationVersionO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/RawRepresentable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/rawrepresentable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/hashvalue"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/init(rawvalue:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/init(rawvalue:).json deleted file mode 100644 index e0f031c9..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/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":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8rawValueACSgSS_tcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/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":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/init(rawvalue:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/rawrepresentable-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/rawrepresentable-implementations.json deleted file mode 100644 index 4b257e46..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/hash(into:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/hashvalue"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/hash(into:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version1.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version1.json deleted file mode 100644 index 06a3b131..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version1.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version1"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/version1"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version1","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The first and oldest version of the model"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version1"}],"title":"CoreDataMigrationVersion.version1","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8version1yA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version1":{"role":"symbol","title":"CoreDataMigrationVersion.version1","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version1"}],"abstract":[{"type":"text","text":"The first and oldest version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version1","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version1"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version2.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version2.json deleted file mode 100644 index 5f119e63..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version2.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version2"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/version2"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The second version of the model"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version2"}],"title":"CoreDataMigrationVersion.version2","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8version2yA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version2":{"role":"symbol","title":"CoreDataMigrationVersion.version2","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version2"}],"abstract":[{"type":"text","text":"The second version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version2","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version2"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version3.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version3.json deleted file mode 100644 index 16818c4f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version3.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version3"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/version3"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version3","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The third version of the model"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version3"}],"title":"CoreDataMigrationVersion.version3","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8version3yA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version3":{"role":"symbol","title":"CoreDataMigrationVersion.version3","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version3"}],"abstract":[{"type":"text","text":"The third version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version3","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version3"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version4.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version4.json deleted file mode 100644 index 46175a92..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version4.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version4"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/version4"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version4","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The fourth version of the model"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version4"}],"title":"CoreDataMigrationVersion.version4","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8version4yA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version4":{"role":"symbol","title":"CoreDataMigrationVersion.version4","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version4"}],"abstract":[{"type":"text","text":"The fourth version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version4","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version4"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version5.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version5.json deleted file mode 100644 index 1aa175bc..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version5.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version5"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/version5"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version5","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The fifth version of the model"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version5"}],"title":"CoreDataMigrationVersion.version5","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8version5yA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version5":{"role":"symbol","title":"CoreDataMigrationVersion.version5","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version5"}],"abstract":[{"type":"text","text":"The fifth version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version5","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version5"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version6.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version6.json deleted file mode 100644 index a46cae6f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version6.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version6"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/version6"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version6","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The sixth version of the model"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version6"}],"title":"CoreDataMigrationVersion.version6","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8version6yA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version6":{"role":"symbol","title":"CoreDataMigrationVersion.version6","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version6"}],"abstract":[{"type":"text","text":"The sixth version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version6","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version6"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version7.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version7.json deleted file mode 100644 index 78afa2d4..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version7.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version7"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/version7"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version7","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The seventh version of the model"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version7"}],"title":"CoreDataMigrationVersion.version7","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8version7yA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version7":{"role":"symbol","title":"CoreDataMigrationVersion.version7","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version7"}],"abstract":[{"type":"text","text":"The seventh version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version7","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version7"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version8.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version8.json deleted file mode 100644 index c9d33d23..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version8.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version8"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/version8"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version8","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The eight version of the model"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version8"}],"title":"CoreDataMigrationVersion.version8","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8version8yA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version8":{"role":"symbol","title":"CoreDataMigrationVersion.version8","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version8"}],"abstract":[{"type":"text","text":"The eight version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version8","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version8"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version9.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version9.json deleted file mode 100644 index eb152beb..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrationversion/version9.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version9"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrationversion\/version9"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version9","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The ninth version of the model"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version9"}],"title":"CoreDataMigrationVersion.version9","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing04CoreA16MigrationVersionO8version9yA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion/version9":{"role":"symbol","title":"CoreDataMigrationVersion.version9","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"version9"}],"abstract":[{"type":"text","text":"The ninth version of the model"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion\/version9","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrationversion\/version9"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator.json deleted file mode 100644 index b7d63d8e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrator"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"4.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrator"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An implementation of the "},{"type":"codeVoice","code":"CoreDataMigratorProtocol"},{"type":"text","text":" for the Cyface data model, as used by the Cyface iOS SDK."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrator"}],"title":"CoreDataMigrator","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing04CoreA8MigratorC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrator"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/init()"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/migrateStore(at:toVersion:inBundle:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/requiresMigration(at:toVersion:inBundle:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator/requiresMigration(at:toVersion:inBundle:)":{"role":"symbol","title":"requiresMigration(at:toVersion:inBundle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresMigration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Checks if the provided store requires a migration to reach "},{"type":"codeVoice","code":"toVersion"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/requiresMigration(at:toVersion:inBundle:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrator\/requiresmigration(at:toversion:inbundle:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Public no argument constructor, so it becomes possible to create instances of this class."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrator\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol":{"role":"symbol","title":"CoreDataMigratorProtocol","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"abstract":[{"type":"text","text":"A protocol implemented by classes responsible for migrating from old to new data models."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"url":"\/documentation\/datacapturing\/coredatamigratorprotocol"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator":{"role":"symbol","title":"CoreDataMigrator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrator"}],"abstract":[{"type":"text","text":"An implementation of the "},{"type":"codeVoice","code":"CoreDataMigratorProtocol"},{"type":"text","text":" for the Cyface data model, as used by the Cyface iOS SDK."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrator"}],"url":"\/documentation\/datacapturing\/coredatamigrator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator/migrateStore(at:toVersion:inBundle:)":{"role":"symbol","title":"migrateStore(at:toVersion:inBundle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"migrateStore"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Migrates the provided store to the provided version."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/migrateStore(at:toVersion:inBundle:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrator\/migratestore(at:toversion:inbundle:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator/init().json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator/init().json deleted file mode 100644 index 1f91a5e8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrator\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Public no argument constructor, so it becomes possible to create instances of this class."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing04CoreA8MigratorCACycfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Public no argument constructor, so it becomes possible to create instances of this class."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrator\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator":{"role":"symbol","title":"CoreDataMigrator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrator"}],"abstract":[{"type":"text","text":"An implementation of the "},{"type":"codeVoice","code":"CoreDataMigratorProtocol"},{"type":"text","text":" for the Cyface data model, as used by the Cyface iOS SDK."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrator"}],"url":"\/documentation\/datacapturing\/coredatamigrator"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator/migratestore(at:toversion:inbundle:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator/migratestore(at:toversion:inbundle:).json deleted file mode 100644 index cd7475dd..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator/migratestore(at:toversion:inbundle:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"migrateStore"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"storeURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":" "},{"kind":"internalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO","text":"CoreDataMigrationVersion"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":" "},{"kind":"internalParam","text":"bundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":" = Bundle.main)"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"at","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The URL pointing to the store to migrate"}]}]},{"name":"toVersion","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The version to migrate to"}]}]},{"name":"inBundle","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The bundle containing the model and mapping files"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrator\/migratestore(at:toversion:inbundle:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/migrateStore(at:toVersion:inBundle:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Migrates the provided store to the provided version."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"migrateStore"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":")"}],"title":"migrateStore(at:toVersion:inBundle:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing04CoreA8MigratorC12migrateStore2at9toVersion8inBundley10Foundation3URLV_AA0ca9MigrationI0OSo8NSBundleCtF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator/migrateStore(at:toVersion:inBundle:)":{"role":"symbol","title":"migrateStore(at:toVersion:inBundle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"migrateStore"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Migrates the provided store to the provided version."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/migrateStore(at:toVersion:inBundle:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrator\/migratestore(at:toversion:inbundle:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator":{"role":"symbol","title":"CoreDataMigrator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrator"}],"abstract":[{"type":"text","text":"An implementation of the "},{"type":"codeVoice","code":"CoreDataMigratorProtocol"},{"type":"text","text":" for the Cyface data model, as used by the Cyface iOS SDK."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrator"}],"url":"\/documentation\/datacapturing\/coredatamigrator"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator/requiresmigration(at:toversion:inbundle:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator/requiresmigration(at:toversion:inbundle:).json deleted file mode 100644 index a5631706..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigrator/requiresmigration(at:toversion:inbundle:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresMigration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"storeURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":" "},{"kind":"internalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO","text":"CoreDataMigrationVersion"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":" "},{"kind":"internalParam","text":"bundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":" = Bundle.main) -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"true"},{"type":"text","text":" if migration is required, "},{"type":"codeVoice","code":"false"},{"type":"text","text":" otherwise"}]}]},{"kind":"parameters","parameters":[{"name":"at","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The URL pointing to the store to check"}]}]},{"name":"toVersion","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The version to migrate to"}]}]},{"name":"inBundle","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The bundle containing the model and mapping files"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigrator\/requiresmigration(at:toversion:inbundle:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/requiresMigration(at:toVersion:inBundle:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Checks if the provided store requires a migration to reach "},{"type":"codeVoice","code":"toVersion"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresMigration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"requiresMigration(at:toVersion:inBundle:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing04CoreA8MigratorC17requiresMigration2at9toVersion8inBundleSb10Foundation3URLV_AA0cafI0OSo8NSBundleCtF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator/requiresMigration(at:toVersion:inBundle:)":{"role":"symbol","title":"requiresMigration(at:toVersion:inBundle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresMigration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Checks if the provided store requires a migration to reach "},{"type":"codeVoice","code":"toVersion"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator\/requiresMigration(at:toVersion:inBundle:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/coredatamigrator\/requiresmigration(at:toversion:inbundle:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator":{"role":"symbol","title":"CoreDataMigrator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrator"}],"abstract":[{"type":"text","text":"An implementation of the "},{"type":"codeVoice","code":"CoreDataMigratorProtocol"},{"type":"text","text":" for the Cyface data model, as used by the Cyface iOS SDK."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrator"}],"url":"\/documentation\/datacapturing\/coredatamigrator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigratorprotocol.json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigratorprotocol.json deleted file mode 100644 index d084f39d..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigratorprotocol.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.2"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"4.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigratorprotocol"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A protocol implemented by classes responsible for migrating from old to new data models."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"title":"CoreDataMigratorProtocol","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:13DataCapturing04CoreA16MigratorProtocolP","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"CoreDataMigratorProtocol"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol\/migrateStore(at:toVersion:inBundle:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol\/requiresMigration(at:toVersion:inBundle:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol/requiresMigration(at:toVersion:inBundle:)":{"role":"symbol","title":"requiresMigration(at:toVersion:inBundle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresMigration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Checks if the provided store requires a migration to reach "},{"type":"codeVoice","code":"toVersion"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol\/requiresMigration(at:toVersion:inBundle:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/coredatamigratorprotocol\/requiresmigration(at:toversion:inbundle:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol":{"role":"symbol","title":"CoreDataMigratorProtocol","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"abstract":[{"type":"text","text":"A protocol implemented by classes responsible for migrating from old to new data models."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"url":"\/documentation\/datacapturing\/coredatamigratorprotocol"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrator":{"role":"symbol","title":"CoreDataMigrator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrator"}],"abstract":[{"type":"text","text":"An implementation of the "},{"type":"codeVoice","code":"CoreDataMigratorProtocol"},{"type":"text","text":" for the Cyface data model, as used by the Cyface iOS SDK."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrator"}],"url":"\/documentation\/datacapturing\/coredatamigrator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol/migrateStore(at:toVersion:inBundle:)":{"role":"symbol","title":"migrateStore(at:toVersion:inBundle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"migrateStore"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Migrates the provided store to the provided version."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol\/migrateStore(at:toVersion:inBundle:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/coredatamigratorprotocol\/migratestore(at:toversion:inbundle:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigratorprotocol/migratestore(at:toversion:inbundle:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigratorprotocol/migratestore(at:toversion:inbundle:).json deleted file mode 100644 index 436d7565..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigratorprotocol/migratestore(at:toversion:inbundle:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"migrateStore"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"storeURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":" "},{"kind":"internalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO","text":"CoreDataMigrationVersion"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":" "},{"kind":"internalParam","text":"bundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"at","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The URL pointing to the store to migrate"}]}]},{"name":"toVersion","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The version to migrate to"}]}]},{"name":"inBundle","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The bundle containing the model and mapping files"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigratorprotocol\/migratestore(at:toversion:inbundle:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol\/migrateStore(at:toVersion:inBundle:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Migrates the provided store to the provided version."}],"kind":"symbol","metadata":{"role":"symbol","title":"migrateStore(at:toVersion:inBundle:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"migrateStore"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"s:13DataCapturing04CoreA16MigratorProtocolP12migrateStore2at9toVersion8inBundley10Foundation3URLV_AA0ca9MigrationJ0OSo8NSBundleCtF","required":true,"modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol/migrateStore(at:toVersion:inBundle:)":{"role":"symbol","title":"migrateStore(at:toVersion:inBundle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"migrateStore"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Migrates the provided store to the provided version."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol\/migrateStore(at:toVersion:inBundle:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/coredatamigratorprotocol\/migratestore(at:toversion:inbundle:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol":{"role":"symbol","title":"CoreDataMigratorProtocol","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"abstract":[{"type":"text","text":"A protocol implemented by classes responsible for migrating from old to new data models."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"url":"\/documentation\/datacapturing\/coredatamigratorprotocol"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigratorprotocol/requiresmigration(at:toversion:inbundle:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigratorprotocol/requiresmigration(at:toversion:inbundle:).json deleted file mode 100644 index 28edd18c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/coredatamigratorprotocol/requiresmigration(at:toversion:inbundle:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresMigration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"storeURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":" "},{"kind":"internalParam","text":"version"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO","text":"CoreDataMigrationVersion"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":" "},{"kind":"internalParam","text":"bundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"true"},{"type":"text","text":" if migration is required, "},{"type":"codeVoice","code":"false"},{"type":"text","text":" otherwise"}]}]},{"kind":"parameters","parameters":[{"name":"at","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The URL pointing to the store to check"}]}]},{"name":"toVersion","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The version to migrate to"}]}]},{"name":"inBundle","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The bundle containing the model and mapping files"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/coredatamigratorprotocol\/requiresmigration(at:toversion:inbundle:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol\/requiresMigration(at:toVersion:inBundle:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Checks if the provided store requires a migration to reach "},{"type":"codeVoice","code":"toVersion"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"requiresMigration(at:toVersion:inBundle:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresMigration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method","externalID":"s:13DataCapturing04CoreA16MigratorProtocolP17requiresMigration2at9toVersion8inBundleSb10Foundation3URLV_AA0cagJ0OSo8NSBundleCtF","required":true,"modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol/requiresMigration(at:toVersion:inBundle:)":{"role":"symbol","title":"requiresMigration(at:toVersion:inBundle:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"requiresMigration"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"toVersion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataMigrationVersion","preciseIdentifier":"s:13DataCapturing04CoreA16MigrationVersionO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"inBundle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bundle","preciseIdentifier":"c:objc(cs)NSBundle"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Checks if the provided store requires a migration to reach "},{"type":"codeVoice","code":"toVersion"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol\/requiresMigration(at:toVersion:inBundle:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/coredatamigratorprotocol\/requiresmigration(at:toversion:inbundle:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigratorProtocol":{"role":"symbol","title":"CoreDataMigratorProtocol","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"abstract":[{"type":"text","text":"A protocol implemented by classes responsible for migrating from old to new data models."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigratorProtocol","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigratorProtocol"}],"url":"\/documentation\/datacapturing\/coredatamigratorprotocol"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataMigrationVersion":{"role":"symbol","title":"CoreDataMigrationVersion","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataMigrationVersion"}],"abstract":[{"type":"text","text":"This is an enumeration of all version of the Cyface iOS data model used as part of the SDK."},{"type":"text","text":" "},{"type":"text","text":"It is required to start migrations between the different versions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataMigrationVersion","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataMigrationVersion"}],"url":"\/documentation\/datacapturing\/coredatamigrationversion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator.json b/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator.json deleted file mode 100644 index 1e53d731..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"After creation of an instance of this class you need to provide a "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and a "},{"type":"codeVoice","code":"password"},{"type":"text","text":", before calling "},{"type":"codeVoice","code":"authenticate()"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"If no "},{"type":"codeVoice","code":"username"},{"type":"text","text":" or "},{"type":"codeVoice","code":"password"},{"type":"text","text":" is available the function will call its failure handler with the "},{"type":"codeVoice","code":"ServerConnectionError.Category.notAuthenticated"},{"type":"text","text":"."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.3"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/credentialsauthenticator"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An authenticator using a combination of "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" to authenticate against a Cyface data collector server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"title":"CredentialsAuthenticator","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing24CredentialsAuthenticatorC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"CredentialsAuthenticator"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/init(authenticationEndpoint:session:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/authenticationEndpoint","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/password","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/username"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/authenticate(onSuccess:onFailure:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/init(authenticationEndpoint:session:)":{"role":"symbol","title":"init(authenticationEndpoint:session:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"authenticationEndpoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Session","preciseIdentifier":"s:9Alamofire7SessionC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new not yet authenticated "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"To authenticate you need to provide a valid "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" and call "},{"type":"codeVoice","code":"authenticate(:(String) -> Void, :(Error) -> Void)"},{"type":"text","text":" afterwards."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/init(authenticationEndpoint:session:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/init(authenticationendpoint:session:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Authenticator":{"role":"symbol","title":"Authenticator","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Authenticator"}],"abstract":[{"type":"text","text":"An "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":" provides functionality to authenticate this app on a servoer for receiving the captured data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Authenticator"}],"url":"\/documentation\/datacapturing\/authenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/username":{"role":"symbol","title":"username","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The username used for authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/username","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/username"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/authenticate(onSuccess:onFailure:)":{"role":"symbol","title":"authenticate(onSuccess:onFailure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Runs the authentication and calls the appropriate function "},{"type":"codeVoice","code":"onSuccess"},{"type":"text","text":" or "},{"type":"codeVoice","code":"onFailure"},{"type":"text","text":" when finished."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/authenticate(onSuccess:onFailure:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/authenticate(onsuccess:onfailure:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The password used for authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/password","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/password"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator":{"role":"symbol","title":"CredentialsAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"abstract":[{"type":"text","text":"An authenticator using a combination of "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" to authenticate against a Cyface data collector server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CredentialsAuthenticator"}],"url":"\/documentation\/datacapturing\/credentialsauthenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/authenticationEndpoint":{"role":"symbol","title":"authenticationEndpoint","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationEndpoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"}],"abstract":[{"type":"text","text":"The location of the Cyface Collector API, used for authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/authenticationEndpoint","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/authenticationendpoint"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/authenticate(onsuccess:onfailure:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/authenticate(onsuccess:onfailure:).json deleted file mode 100644 index da4a8f51..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/authenticate(onsuccess:onfailure:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": "},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": "},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"onSuccess: A closure called and supplied with the resulting authentication token, when authentication was successful."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"onFailure: A closure called and supplied with the causing error, when authentication was not successful."}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/credentialsauthenticator\/authenticate(onsuccess:onfailure:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/authenticate(onSuccess:onFailure:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Runs the authentication and calls the appropriate function "},{"type":"codeVoice","code":"onSuccess"},{"type":"text","text":" or "},{"type":"codeVoice","code":"onFailure"},{"type":"text","text":" when finished."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"title":"authenticate(onSuccess:onFailure:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing24CredentialsAuthenticatorC12authenticate9onSuccess0F7FailureyySSc_ys5Error_pctF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/authenticate(onSuccess:onFailure:)":{"role":"symbol","title":"authenticate(onSuccess:onFailure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Runs the authentication and calls the appropriate function "},{"type":"codeVoice","code":"onSuccess"},{"type":"text","text":" or "},{"type":"codeVoice","code":"onFailure"},{"type":"text","text":" when finished."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/authenticate(onSuccess:onFailure:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/authenticate(onsuccess:onfailure:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator":{"role":"symbol","title":"CredentialsAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"abstract":[{"type":"text","text":"An authenticator using a combination of "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" to authenticate against a Cyface data collector server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CredentialsAuthenticator"}],"url":"\/documentation\/datacapturing\/credentialsauthenticator"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/authenticationendpoint.json b/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/authenticationendpoint.json deleted file mode 100644 index 25d1f8e0..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/authenticationendpoint.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationEndpoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/credentialsauthenticator\/authenticationendpoint"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/authenticationEndpoint","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The location of the Cyface Collector API, used for authentication."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationEndpoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"}],"title":"authenticationEndpoint","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing24CredentialsAuthenticatorC22authenticationEndpoint10Foundation3URLVvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator":{"role":"symbol","title":"CredentialsAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"abstract":[{"type":"text","text":"An authenticator using a combination of "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" to authenticate against a Cyface data collector server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CredentialsAuthenticator"}],"url":"\/documentation\/datacapturing\/credentialsauthenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/authenticationEndpoint":{"role":"symbol","title":"authenticationEndpoint","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationEndpoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"}],"abstract":[{"type":"text","text":"The location of the Cyface Collector API, used for authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/authenticationEndpoint","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/authenticationendpoint"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/init(authenticationendpoint:session:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/init(authenticationendpoint:session:).json deleted file mode 100644 index 91872f08..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/init(authenticationendpoint:session:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"required"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"authenticationEndpoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Session","preciseIdentifier":"s:9Alamofire7SessionC"},{"kind":"text","text":" = AF)"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"authenticationEndpoint","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location of the Cyface Collector API, used for authentication."}]}]},{"name":"session","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An Alamofire session to use for sending requests and receiving responses."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/credentialsauthenticator\/init(authenticationendpoint:session:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/init(authenticationEndpoint:session:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new not yet authenticated "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"To authenticate you need to provide a valid "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" and call "},{"type":"codeVoice","code":"authenticate(:(String) -> Void, :(Error) -> Void)"},{"type":"text","text":" afterwards."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"authenticationEndpoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Session","preciseIdentifier":"s:9Alamofire7SessionC"},{"kind":"text","text":")"}],"title":"init(authenticationEndpoint:session:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing24CredentialsAuthenticatorC22authenticationEndpoint7sessionAC10Foundation3URLV_9Alamofire7SessionCtcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/init(authenticationEndpoint:session:)":{"role":"symbol","title":"init(authenticationEndpoint:session:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"authenticationEndpoint"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Session","preciseIdentifier":"s:9Alamofire7SessionC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new not yet authenticated "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"To authenticate you need to provide a valid "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" and call "},{"type":"codeVoice","code":"authenticate(:(String) -> Void, :(Error) -> Void)"},{"type":"text","text":" afterwards."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/init(authenticationEndpoint:session:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/init(authenticationendpoint:session:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator":{"role":"symbol","title":"CredentialsAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"abstract":[{"type":"text","text":"An authenticator using a combination of "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" to authenticate against a Cyface data collector server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CredentialsAuthenticator"}],"url":"\/documentation\/datacapturing\/credentialsauthenticator"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/password.json b/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/password.json deleted file mode 100644 index c303a168..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/password.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/credentialsauthenticator\/password"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/password","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The password used for authentication."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"password","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing24CredentialsAuthenticatorC8passwordSSSgvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator":{"role":"symbol","title":"CredentialsAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"abstract":[{"type":"text","text":"An authenticator using a combination of "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" to authenticate against a Cyface data collector server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CredentialsAuthenticator"}],"url":"\/documentation\/datacapturing\/credentialsauthenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/password":{"role":"symbol","title":"password","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"password"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The password used for authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/password","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/password"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/username.json b/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/username.json deleted file mode 100644 index f512a174..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/credentialsauthenticator/username.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/credentialsauthenticator\/username"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/username","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The username used for authentication."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"username","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing24CredentialsAuthenticatorC8usernameSSSgvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator":{"role":"symbol","title":"CredentialsAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CredentialsAuthenticator"}],"abstract":[{"type":"text","text":"An authenticator using a combination of "},{"type":"codeVoice","code":"username"},{"type":"text","text":" and "},{"type":"codeVoice","code":"password"},{"type":"text","text":" to authenticate against a Cyface data collector server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CredentialsAuthenticator"}],"url":"\/documentation\/datacapturing\/credentialsauthenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CredentialsAuthenticator/username":{"role":"symbol","title":"username","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"username"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The username used for authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CredentialsAuthenticator\/username","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/credentialsauthenticator\/username"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror.json deleted file mode 100644 index fdf28ece..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"codeListing","syntax":null,"code":["case isPaused","case notPaused","case isRunning","case notRunning","case noCurrentMeasurement"]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.2.0"}]}],"type":"aside","name":"Since"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.2.0"}]}],"type":"aside","name":"Version"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP","doc:\/\/org.cocoapods.DataCapturing\/SH","doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"title":"DataCapturingError","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:13DataCapturing0aB5ErrorO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/invalidTrack","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/isPaused","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/isRunning","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/noCurrentMeasurement","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/notPaused","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/notRunning"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Equatable-Implementations","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Error-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/isRunning":{"role":"symbol","title":"DataCapturingError.isRunning","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"}],"abstract":[{"type":"text","text":"Thrown if the service was running when it should not have been."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/isrunning"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/noCurrentMeasurement":{"role":"symbol","title":"DataCapturingError.noCurrentMeasurement","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noCurrentMeasurement"}],"abstract":[{"type":"text","text":"For some reason there was no current measurement to write data to or to read information to, during a capturing run. This can already happen during start up, if the current measurement was not created for some reason."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/noCurrentMeasurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/nocurrentmeasurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/invalidTrack":{"role":"symbol","title":"DataCapturingError.invalidTrack","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidTrack"}],"abstract":[{"type":"text","text":"The requested track does not exist"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/invalidTrack","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/invalidtrack"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/isPaused":{"role":"symbol","title":"DataCapturingError.isPaused","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"}],"abstract":[{"type":"text","text":"Thrown if the service was paused when it should not have been."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/ispaused"},"doc://org.cocoapods.DataCapturing/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/notRunning":{"role":"symbol","title":"DataCapturingError.notRunning","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notRunning"}],"abstract":[{"type":"text","text":"Thrown if the service was not running when it should have been."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/notRunning","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/notrunning"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/notPaused":{"role":"symbol","title":"DataCapturingError.notPaused","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notPaused"}],"abstract":[{"type":"text","text":"Thrown if the service was not paused when it should have been."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/notPaused","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/notpaused"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/!=(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/!=(_:_:).json deleted file mode 100644 index afdfd339..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/!=(_:_:)","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:13DataCapturing0aB5ErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Equatable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/asaferror(orfailwith:file:line:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/asaferror(orfailwith:file:line:).json deleted file mode 100644 index d3c052a6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/asaferror(orfailwith:file:line:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":" "},{"kind":"internalParam","text":"message"},{"kind":"text","text":": "},{"kind":"attribute","text":"@autoclosure "},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#file"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#line"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/asaferror(orfailwith:file:line:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/asAFError(orFailWith:file:line:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"symbolKind":"method","externalID":"s:s5ErrorP9AlamofireE9asAFError10orFailWith4file4lineAC0D0OSSyXK_s12StaticStringVSutF::SYNTHESIZED::s:13DataCapturing0aB5ErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/asaferror(orfailwith:file:line:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/error-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/asaferror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/asaferror.json deleted file mode 100644 index 7cd3fcfa..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/asaferror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/asaferror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/asAFError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp::SYNTHESIZED::s:13DataCapturing0aB5ErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/asaferror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/equatable-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/equatable-implementations.json deleted file mode 100644 index 0ce61164..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/!=(_:_:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/!=(_:_:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/error-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/error-implementations.json deleted file mode 100644 index c4d84fba..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Error-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/asAFError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/localizedDescription"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/asAFError(orFailWith:file:line:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/asaferror(orfailwith:file:line:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/localizeddescription"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/invalidtrack.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/invalidtrack.json deleted file mode 100644 index 895b53ad..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/invalidtrack.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidTrack"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/invalidtrack"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/invalidTrack","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The requested track does not exist"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidTrack"}],"title":"DataCapturingError.invalidTrack","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5ErrorO12invalidTrackyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/invalidTrack":{"role":"symbol","title":"DataCapturingError.invalidTrack","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidTrack"}],"abstract":[{"type":"text","text":"The requested track does not exist"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/invalidTrack","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/invalidtrack"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/ispaused.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/ispaused.json deleted file mode 100644 index f2cac180..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/ispaused.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/ispaused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/isPaused","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Thrown if the service was paused when it should not have been."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"}],"title":"DataCapturingError.isPaused","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5ErrorO8isPausedyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/isPaused":{"role":"symbol","title":"DataCapturingError.isPaused","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"}],"abstract":[{"type":"text","text":"Thrown if the service was paused when it should not have been."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/ispaused"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/isrunning.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/isrunning.json deleted file mode 100644 index 3d9547c6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/isrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/isrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/isRunning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Thrown if the service was running when it should not have been."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"}],"title":"DataCapturingError.isRunning","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5ErrorO9isRunningyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/isRunning":{"role":"symbol","title":"DataCapturingError.isRunning","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"}],"abstract":[{"type":"text","text":"Thrown if the service was running when it should not have been."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/isrunning"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/localizeddescription.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/localizeddescription.json deleted file mode 100644 index 4d3e97ec..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:13DataCapturing0aB5ErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/localizeddescription"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/nocurrentmeasurement.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/nocurrentmeasurement.json deleted file mode 100644 index a5947c12..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/nocurrentmeasurement.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noCurrentMeasurement"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/nocurrentmeasurement"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/noCurrentMeasurement","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"For some reason there was no current measurement to write data to or to read information to, during a capturing run. This can already happen during start up, if the current measurement was not created for some reason."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noCurrentMeasurement"}],"title":"DataCapturingError.noCurrentMeasurement","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5ErrorO20noCurrentMeasurementyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/noCurrentMeasurement":{"role":"symbol","title":"DataCapturingError.noCurrentMeasurement","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noCurrentMeasurement"}],"abstract":[{"type":"text","text":"For some reason there was no current measurement to write data to or to read information to, during a capturing run. This can already happen during start up, if the current measurement was not created for some reason."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/noCurrentMeasurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/nocurrentmeasurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/notpaused.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/notpaused.json deleted file mode 100644 index 16b24c6e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/notpaused.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notPaused"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/notpaused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/notPaused","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Thrown if the service was not paused when it should have been."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notPaused"}],"title":"DataCapturingError.notPaused","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5ErrorO9notPausedyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/notPaused":{"role":"symbol","title":"DataCapturingError.notPaused","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notPaused"}],"abstract":[{"type":"text","text":"Thrown if the service was not paused when it should have been."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/notPaused","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/notpaused"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/notrunning.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/notrunning.json deleted file mode 100644 index 26abd8ff..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingerror/notrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notRunning"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingerror\/notrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/notRunning","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Thrown if the service was not running when it should have been."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notRunning"}],"title":"DataCapturingError.notRunning","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5ErrorO10notRunningyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError":{"role":"symbol","title":"DataCapturingError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingError"}],"abstract":[{"type":"text","text":"An enumeration for all errors caused by capturing data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingError"}],"url":"\/documentation\/datacapturing\/datacapturingerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingError/notRunning":{"role":"symbol","title":"DataCapturingError.notRunning","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notRunning"}],"abstract":[{"type":"text","text":"Thrown if the service was not running when it should have been."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingError\/notRunning","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingerror\/notrunning"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent.json deleted file mode 100644 index e9bcdec8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"These events may be received by a closure provided to the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" on calling start."}]},{"type":"codeListing","syntax":null,"code":["case geoLocationFixAcquired","case geoLocationFixLost","case geoLocationAcquired","case lowDiskSpace","case serviceStarted","case servicePaused","case serviceResumed","case serviceStopped","case synchronizationFinished","case synchronizationStarted"]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"3.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"title":"DataCapturingEvent","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:13DataCapturing0aB5EventO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationAcquired(position:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationFixAcquired","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationFixLost","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/lowDiskSpace(allocation:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/servicePaused(measurement:event:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceResumed(measurement:event:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceStarted(measurement:event:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceStopped(measurement:event:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/synchronizationFinished(measurement:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/synchronizationStarted(measurement:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/description"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A stringyfied variant of this object, mostly used for human readable representation during debugging sessions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/description"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/geoLocationFixLost":{"role":"symbol","title":"DataCapturingEvent.geoLocationFixLost","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationFixLost"}],"abstract":[{"type":"text","text":"Occurs everytime the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" loses its geo location fix."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationFixLost","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/geolocationfixlost"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/geoLocationFixAcquired":{"role":"symbol","title":"DataCapturingEvent.geoLocationFixAcquired","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationFixAcquired"}],"abstract":[{"type":"text","text":"Occurs everytime the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" received a geo location fix and thus is able to track its position."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationFixAcquired","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/geolocationfixacquired"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/synchronizationFinished(measurement:)":{"role":"symbol","title":"DataCapturingEvent.synchronizationFinished(measurement:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizationFinished"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Occurs if the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" has finished synchronizing a measurement."},{"type":"text","text":" "},{"type":"text","text":"This does not necessarily mean, that the synchronization was successful."},{"type":"text","text":" "},{"type":"text","text":"Please check with the local data storage using a "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":" to see if the measurement synchronization was successful or not."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/synchronizationFinished(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/synchronizationfinished(measurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/geoLocationAcquired(position:)":{"role":"symbol","title":"DataCapturingEvent.geoLocationAcquired(position:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationAcquired"},{"kind":"text","text":"("},{"kind":"externalParam","text":"position"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocationCacheEntry","preciseIdentifier":"s:13DataCapturing18LocationCacheEntryV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Occurs each time the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" receives a new geo location position."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationAcquired(position:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/geolocationacquired(position:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/serviceStopped(measurement:event:)":{"role":"symbol","title":"DataCapturingEvent.serviceStopped(measurement:event:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceStopped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Used to notify the client application of a successful stop of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceStopped(measurement:event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/servicestopped(measurement:event:)"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/servicePaused(measurement:event:)":{"role":"symbol","title":"DataCapturingEvent.servicePaused(measurement:event:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"servicePaused"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Used to notify the client application of a successful pause of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/servicePaused(measurement:event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/servicepaused(measurement:event:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/serviceResumed(measurement:event:)":{"role":"symbol","title":"DataCapturingEvent.serviceResumed(measurement:event:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceResumed"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Used to notify the client application of a successful resume of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceResumed(measurement:event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/serviceresumed(measurement:event:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/lowDiskSpace(allocation:)":{"role":"symbol","title":"DataCapturingEvent.lowDiskSpace(allocation:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lowDiskSpace"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DiskConsumption","preciseIdentifier":"s:13DataCapturing15DiskConsumptionC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Occurs each time the application runs out of space."},{"type":"text","text":" "},{"type":"text","text":"How much space is used and how much is available may be retrieved from "},{"type":"codeVoice","code":"allocation"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/lowDiskSpace(allocation:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/lowdiskspace(allocation:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/serviceStarted(measurement:event:)":{"role":"symbol","title":"DataCapturingEvent.serviceStarted(measurement:event:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceStarted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Used to notify the client application of a successful start of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceStarted(measurement:event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/servicestarted(measurement:event:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/synchronizationStarted(measurement:)":{"role":"symbol","title":"DataCapturingEvent.synchronizationStarted(measurement:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizationStarted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Occurs when the synchronization of a measurement has started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/synchronizationStarted(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/synchronizationstarted(measurement:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/description.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/description.json deleted file mode 100644 index a561b6d1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/description.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A stringyfied variant of this object, mostly used for human readable representation during debugging sessions."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing0aB5EventO11descriptionSSvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A stringyfied variant of this object, mostly used for human readable representation during debugging sessions."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/description"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/geolocationacquired(position:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/geolocationacquired(position:).json deleted file mode 100644 index 058599de..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/geolocationacquired(position:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationAcquired"},{"kind":"text","text":"("},{"kind":"externalParam","text":"position"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","preciseIdentifier":"s:13DataCapturing18LocationCacheEntryV","text":"LocationCacheEntry"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"position: The new geo location position."}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/geolocationacquired(position:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationAcquired(position:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Occurs each time the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" receives a new geo location position."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationAcquired"},{"kind":"text","text":"("},{"kind":"externalParam","text":"position"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocationCacheEntry","preciseIdentifier":"s:13DataCapturing18LocationCacheEntryV"},{"kind":"text","text":")"}],"title":"DataCapturingEvent.geoLocationAcquired(position:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO19geoLocationAcquiredyAcA0E10CacheEntryV_tcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/geoLocationAcquired(position:)":{"role":"symbol","title":"DataCapturingEvent.geoLocationAcquired(position:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationAcquired"},{"kind":"text","text":"("},{"kind":"externalParam","text":"position"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocationCacheEntry","preciseIdentifier":"s:13DataCapturing18LocationCacheEntryV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Occurs each time the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" receives a new geo location position."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationAcquired(position:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/geolocationacquired(position:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/geolocationfixacquired.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/geolocationfixacquired.json deleted file mode 100644 index 3a0ef2a8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/geolocationfixacquired.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationFixAcquired"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/geolocationfixacquired"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationFixAcquired","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Occurs everytime the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" received a geo location fix and thus is able to track its position."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationFixAcquired"}],"title":"DataCapturingEvent.geoLocationFixAcquired","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO22geoLocationFixAcquiredyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/geoLocationFixAcquired":{"role":"symbol","title":"DataCapturingEvent.geoLocationFixAcquired","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationFixAcquired"}],"abstract":[{"type":"text","text":"Occurs everytime the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" received a geo location fix and thus is able to track its position."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationFixAcquired","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/geolocationfixacquired"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/geolocationfixlost.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/geolocationfixlost.json deleted file mode 100644 index 4c1cf2b6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/geolocationfixlost.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationFixLost"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/geolocationfixlost"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationFixLost","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Occurs everytime the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" loses its geo location fix."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationFixLost"}],"title":"DataCapturingEvent.geoLocationFixLost","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO18geoLocationFixLostyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/geoLocationFixLost":{"role":"symbol","title":"DataCapturingEvent.geoLocationFixLost","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"geoLocationFixLost"}],"abstract":[{"type":"text","text":"Occurs everytime the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" loses its geo location fix."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/geoLocationFixLost","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/geolocationfixlost"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/lowdiskspace(allocation:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/lowdiskspace(allocation:).json deleted file mode 100644 index b57edb17..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/lowdiskspace(allocation:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lowDiskSpace"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption","preciseIdentifier":"s:13DataCapturing15DiskConsumptionC","text":"DiskConsumption"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"allocation: Information about the applications disk (or rather SD card) space consumption."}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/lowdiskspace(allocation:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/lowDiskSpace(allocation:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Occurs each time the application runs out of space."},{"type":"text","text":" "},{"type":"text","text":"How much space is used and how much is available may be retrieved from "},{"type":"codeVoice","code":"allocation"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lowDiskSpace"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DiskConsumption","preciseIdentifier":"s:13DataCapturing15DiskConsumptionC"},{"kind":"text","text":")"}],"title":"DataCapturingEvent.lowDiskSpace(allocation:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO12lowDiskSpaceyAcA0E11ConsumptionC_tcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption":{"role":"symbol","title":"DiskConsumption","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DiskConsumption"}],"abstract":[{"type":"text","text":"Objects of this class represent the current disk (or rather SD card) space used and available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DiskConsumption"}],"url":"\/documentation\/datacapturing\/diskconsumption"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/lowDiskSpace(allocation:)":{"role":"symbol","title":"DataCapturingEvent.lowDiskSpace(allocation:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lowDiskSpace"},{"kind":"text","text":"("},{"kind":"externalParam","text":"allocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DiskConsumption","preciseIdentifier":"s:13DataCapturing15DiskConsumptionC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Occurs each time the application runs out of space."},{"type":"text","text":" "},{"type":"text","text":"How much space is used and how much is available may be retrieved from "},{"type":"codeVoice","code":"allocation"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/lowDiskSpace(allocation:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/lowdiskspace(allocation:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/servicepaused(measurement:event:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/servicepaused(measurement:event:).json deleted file mode 100644 index da3517df..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/servicepaused(measurement:event:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"servicePaused"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","preciseIdentifier":"s:13DataCapturing5EventC","text":"Event"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"measurement: The device wide unique identifier of the measurement for which the service has paused"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"event: The event stored for this service pause"}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/servicepaused(measurement:event:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/servicePaused(measurement:event:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Used to notify the client application of a successful pause of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"servicePaused"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"title":"DataCapturingEvent.servicePaused(measurement:event:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO13servicePausedyACs5Int64VSg_AA0C0CtcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/servicePaused(measurement:event:)":{"role":"symbol","title":"DataCapturingEvent.servicePaused(measurement:event:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"servicePaused"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Used to notify the client application of a successful pause of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/servicePaused(measurement:event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/servicepaused(measurement:event:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/serviceresumed(measurement:event:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/serviceresumed(measurement:event:).json deleted file mode 100644 index 19a94795..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/serviceresumed(measurement:event:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceResumed"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","preciseIdentifier":"s:13DataCapturing5EventC","text":"Event"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"measurement: The device wide unique identifier of the measurement for which the service has resumed"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"event: The event stored for this service resume"}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/serviceresumed(measurement:event:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceResumed(measurement:event:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Used to notify the client application of a successful resume of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceResumed"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"title":"DataCapturingEvent.serviceResumed(measurement:event:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO14serviceResumedyACs5Int64VSg_AA0C0CtcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/serviceResumed(measurement:event:)":{"role":"symbol","title":"DataCapturingEvent.serviceResumed(measurement:event:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceResumed"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Used to notify the client application of a successful resume of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceResumed(measurement:event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/serviceresumed(measurement:event:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/servicestarted(measurement:event:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/servicestarted(measurement:event:).json deleted file mode 100644 index 62c69d24..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/servicestarted(measurement:event:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceStarted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","preciseIdentifier":"s:13DataCapturing5EventC","text":"Event"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"measurement: The device wide unique identifier of the measurement for which the service has started"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"event: The event stored for this service start"}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/servicestarted(measurement:event:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceStarted(measurement:event:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Used to notify the client application of a successful start of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceStarted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"title":"DataCapturingEvent.serviceStarted(measurement:event:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO14serviceStartedyACs5Int64VSg_AA0C0CtcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/serviceStarted(measurement:event:)":{"role":"symbol","title":"DataCapturingEvent.serviceStarted(measurement:event:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceStarted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Used to notify the client application of a successful start of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceStarted(measurement:event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/servicestarted(measurement:event:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/servicestopped(measurement:event:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/servicestopped(measurement:event:).json deleted file mode 100644 index 5d8434a8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/servicestopped(measurement:event:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceStopped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","preciseIdentifier":"s:13DataCapturing5EventC","text":"Event"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"measurement: The device wide unique identifier of the measurement for which the service has stopped"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"event: The event stored for this service stop"}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/servicestopped(measurement:event:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceStopped(measurement:event:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Used to notify the client application of a successful stop of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceStopped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"title":"DataCapturingEvent.serviceStopped(measurement:event:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO14serviceStoppedyACs5Int64VSg_AA0C0CtcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/serviceStopped(measurement:event:)":{"role":"symbol","title":"DataCapturingEvent.serviceStopped(measurement:event:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"serviceStopped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Used to notify the client application of a successful stop of the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/serviceStopped(measurement:event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/servicestopped(measurement:event:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/synchronizationfinished(measurement:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/synchronizationfinished(measurement:).json deleted file mode 100644 index cdb1cd66..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/synchronizationfinished(measurement:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizationFinished"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"measurement: The measurement which finished synchronization."}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/synchronizationfinished(measurement:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/synchronizationFinished(measurement:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Occurs if the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" has finished synchronizing a measurement."},{"type":"text","text":" "},{"type":"text","text":"This does not necessarily mean, that the synchronization was successful."},{"type":"text","text":" "},{"type":"text","text":"Please check with the local data storage using a "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":" to see if the measurement synchronization was successful or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizationFinished"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"title":"DataCapturingEvent.synchronizationFinished(measurement:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO23synchronizationFinishedyACs5Int64V_tcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/synchronizationFinished(measurement:)":{"role":"symbol","title":"DataCapturingEvent.synchronizationFinished(measurement:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizationFinished"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Occurs if the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" has finished synchronizing a measurement."},{"type":"text","text":" "},{"type":"text","text":"This does not necessarily mean, that the synchronization was successful."},{"type":"text","text":" "},{"type":"text","text":"Please check with the local data storage using a "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":" to see if the measurement synchronization was successful or not."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/synchronizationFinished(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/synchronizationfinished(measurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/synchronizationstarted(measurement:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/synchronizationstarted(measurement:).json deleted file mode 100644 index f705445e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingevent/synchronizationstarted(measurement:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizationStarted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"measurement: The measurement the gets synchronized."}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingevent\/synchronizationstarted(measurement:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/synchronizationStarted(measurement:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Occurs when the synchronization of a measurement has started."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizationStarted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"title":"DataCapturingEvent.synchronizationStarted(measurement:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing0aB5EventO22synchronizationStartedyACs5Int64V_tcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent/synchronizationStarted(measurement:)":{"role":"symbol","title":"DataCapturingEvent.synchronizationStarted(measurement:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizationStarted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Occurs when the synchronization of a measurement has started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent\/synchronizationStarted(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingevent\/synchronizationstarted(measurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice.json deleted file mode 100644 index b2365b6a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"10.1.2"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":[],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService"],"kind":"relationships","title":"Inherited By","type":"inheritedBy"},{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/objc(pl)CLLocationManagerDelegate","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject","doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP","doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"title":"DataCapturingService","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@DataCapturing@objc(cs)DataCapturingService","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/init()","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/currentMeasurement","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/isPaused","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/isRunning","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationUpdateSkipRate"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/changeModality(to:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/pause()","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/resume()","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/start(inMode:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/stop()"]},{"title":"Type Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/convertToUtcTimestamp(date:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/currentTimeInMillisSince1970()"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/CLLocationManagerDelegate-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/changeModality(to:)":{"role":"symbol","title":"changeModality(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"changeModality"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Changes the current mode of transportation of the measurement. This can happen if the user switches for example from a bicycle to a car."},{"type":"text","text":" "},{"type":"text","text":"If the new modality is the same as the old one, the method returns without doing anything."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/changeModality(to:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/changemodality(to:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"codeVoice","code":"true"},{"type":"text","text":" if data capturing was running but is currently paused; "},{"type":"codeVoice","code":"false"},{"type":"text","text":" otherwise."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/ispaused"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"codeVoice","code":"true"},{"type":"text","text":" if data capturing is running; "},{"type":"codeVoice","code":"false"},{"type":"text","text":" otherwise."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/isrunning"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService":{"role":"symbol","title":"MovebisDataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovebisDataCapturingService"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" implementation that provides the ability to capture locations"},{"type":"text","text":" "},{"type":"text","text":"before an actual measurement has been started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovebisDataCapturingService"}],"url":"\/documentation\/datacapturing\/movebisdatacapturingservice"},"doc://org.cocoapods.DataCapturing/objc(pl)CLLocationManagerDelegate":{"type":"unresolvable","title":"CoreLocation.CLLocationManagerDelegate","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)CLLocationManagerDelegate"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/CLLocationManagerDelegate-Implementations":{"role":"collectionGroup","title":"CLLocationManagerDelegate Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/CLLocationManagerDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/cllocationmanagerdelegate-implementations"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/start(inMode:)":{"role":"symbol","title":"start(inMode:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"start"},{"kind":"text","text":"("},{"kind":"externalParam","text":"inMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Starts the capturing process."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/start(inMode:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/start(inmode:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/locationUpdateSkipRate":{"role":"symbol","title":"locationUpdateSkipRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationUpdateSkipRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"}],"abstract":[{"type":"text","text":"Locations are captured approximately once per second on most devices. If you would like to get fewer updates this parameter controls, how many events are skipped before one is reported to your handler. The default value is 1, which reports every event. To receive fewer events you could for example set it to 5 to only receive every fifth event."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationUpdateSkipRate","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/locationupdateskiprate"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/stop()":{"role":"symbol","title":"stop()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Stops the currently running or paused data capturing process or does nothing if the process is not"},{"type":"text","text":" "},{"type":"text","text":"running."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/stop()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/stop()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/currentTimeInMillisSince1970()":{"role":"symbol","title":"currentTimeInMillisSince1970()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentTimeInMillisSince1970"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"Provides the current time in milliseconds since january 1st 1970 (UTC)."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/currentTimeInMillisSince1970()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/currenttimeinmillissince1970()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/pause()":{"role":"symbol","title":"pause()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Pauses the current data capturing measurement for the moment. No data is captured until "},{"type":"codeVoice","code":"resume()"},{"type":"text","text":" has been called, but upon the call to "},{"type":"codeVoice","code":"resume()"},{"type":"text","text":" the last measurement will be continued instead of beginning a new now."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/pause()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/pause()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/resume()":{"role":"symbol","title":"resume()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"resume"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Resumes the current data capturing with the data capturing measurement that was running when "},{"type":"codeVoice","code":"pause()"},{"type":"text","text":" was called. A call to this method is only valid after a call to "},{"type":"codeVoice","code":"pause()"},{"type":"text","text":". It is going to fail if used after "},{"type":"codeVoice","code":"start()"},{"type":"text","text":" or "},{"type":"codeVoice","code":"stop()"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/resume()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/resume()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)":{"role":"symbol","title":"init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sensorManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMMotionManager","preciseIdentifier":"c:objc(cs)CMMotionManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accelerometerInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"gyroInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"directionsInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"savingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"dataManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eventHandler"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:13DataCapturing6StatusO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"))"}],"abstract":[{"type":"text","text":"Creates a new completely initialized "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" accessing data a certain amount of times per second."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/convertToUtcTimestamp(date:)":{"role":"symbol","title":"convertToUtcTimestamp(date:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"convertToUtcTimestamp"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"Converts a "},{"type":"codeVoice","code":"Data"},{"type":"text","text":" object to a UTC milliseconds timestamp since january 1st 1970."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/convertToUtcTimestamp(date:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/converttoutctimestamp(date:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/currentMeasurement":{"role":"symbol","title":"currentMeasurement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The currently recorded "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" or "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" if there is no active recording."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/currentMeasurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/currentmeasurement"},"doc://org.cocoapods.DataCapturing/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/init()"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/changemodality(to:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/changemodality(to:).json deleted file mode 100644 index 812df506..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/changemodality(to:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"changeModality"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"modality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"to","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The modality context to switch to."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/changemodality(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/changeModality(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Changes the current mode of transportation of the measurement. This can happen if the user switches for example from a bicycle to a car."},{"type":"text","text":" "},{"type":"text","text":"If the new modality is the same as the old one, the method returns without doing anything."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"changeModality"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"changeModality(to:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing0aB7ServiceC14changeModality2toySS_tF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/changeModality(to:)":{"role":"symbol","title":"changeModality(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"changeModality"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Changes the current mode of transportation of the measurement. This can happen if the user switches for example from a bicycle to a car."},{"type":"text","text":" "},{"type":"text","text":"If the new modality is the same as the old one, the method returns without doing anything."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/changeModality(to:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/changemodality(to:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/cllocationmanagerdelegate-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/cllocationmanagerdelegate-implementations.json deleted file mode 100644 index 6c821ea6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/cllocationmanagerdelegate-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/cllocationmanagerdelegate-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/CLLocationManagerDelegate-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"CLLocationManagerDelegate Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationManager(_:didFailWithError:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationManager(_:didUpdateLocations:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/locationManager(_:didFailWithError:)":{"role":"symbol","title":"locationManager(_:didFailWithError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CLLocationManager","preciseIdentifier":"c:objc(cs)CLLocationManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailWithError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The listener method informed about error during location tracking. Just prints those errors to the log."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationManager(_:didFailWithError:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/locationmanager(_:didfailwitherror:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/locationManager(_:didUpdateLocations:)":{"role":"symbol","title":"locationManager(_:didUpdateLocations:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CLLocationManager","preciseIdentifier":"c:objc(cs)CLLocationManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"The listener method that is informed about new geo locations."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationManager(_:didUpdateLocations:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/locationmanager(_:didupdatelocations:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/converttoutctimestamp(date:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/converttoutctimestamp(date:).json deleted file mode 100644 index 122f977f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/converttoutctimestamp(date:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"convertToUtcTimestamp"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/converttoutctimestamp(date:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/convertToUtcTimestamp(date:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Converts a "},{"type":"codeVoice","code":"Data"},{"type":"text","text":" object to a UTC milliseconds timestamp since january 1st 1970."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"convertToUtcTimestamp"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"title":"convertToUtcTimestamp(date:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing0aB7ServiceC21convertToUtcTimestamp4dates6UInt64V10Foundation4DateV_tFZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/convertToUtcTimestamp(date:)":{"role":"symbol","title":"convertToUtcTimestamp(date:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"convertToUtcTimestamp"},{"kind":"text","text":"("},{"kind":"externalParam","text":"date"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"Converts a "},{"type":"codeVoice","code":"Data"},{"type":"text","text":" object to a UTC milliseconds timestamp since january 1st 1970."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/convertToUtcTimestamp(date:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/converttoutctimestamp(date:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/currentmeasurement.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/currentmeasurement.json deleted file mode 100644 index aa0afdf3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/currentmeasurement.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/currentmeasurement"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/currentMeasurement","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The currently recorded "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" or "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" if there is no active recording."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"title":"currentMeasurement","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing0aB7ServiceC18currentMeasurements5Int64VSgvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/currentMeasurement":{"role":"symbol","title":"currentMeasurement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The currently recorded "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" or "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" if there is no active recording."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/currentMeasurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/currentmeasurement"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/currenttimeinmillissince1970().json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/currenttimeinmillissince1970().json deleted file mode 100644 index 2e727755..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/currenttimeinmillissince1970().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentTimeInMillisSince1970"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/currenttimeinmillissince1970()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/currentTimeInMillisSince1970()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Provides the current time in milliseconds since january 1st 1970 (UTC)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentTimeInMillisSince1970"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"title":"currentTimeInMillisSince1970()","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing0aB7ServiceC28currentTimeInMillisSince1970s6UInt64VyFZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/currentTimeInMillisSince1970()":{"role":"symbol","title":"currentTimeInMillisSince1970()","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"currentTimeInMillisSince1970"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"Provides the current time in milliseconds since january 1st 1970 (UTC)."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/currentTimeInMillisSince1970()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/currenttimeinmillissince1970()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/init().json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/init().json deleted file mode 100644 index b95f50cb..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@DataCapturing@objc(cs)DataCapturingService(im)init","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/init()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:).json deleted file mode 100644 index 6afda401..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sensorManager"},{"kind":"text","text":" "},{"kind":"internalParam","text":"manager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMMotionManager","preciseIdentifier":"c:objc(cs)CMMotionManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accelerometerInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" = 100, "},{"kind":"externalParam","text":"gyroInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" = 100, "},{"kind":"externalParam","text":"directionsInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" = 100, "},{"kind":"externalParam","text":"savingInterval"},{"kind":"text","text":" "},{"kind":"internalParam","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":" = 30, "},{"kind":"externalParam","text":"dataManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC","text":"CoreDataManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eventHandler"},{"kind":"text","text":": "},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" (("},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO","text":"DataCapturingEvent"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","preciseIdentifier":"s:13DataCapturing6StatusO","text":"Status"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"))"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"sensorManager","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An instance of "},{"type":"codeVoice","code":"CMMotionManager"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"There should be only one instance of this type in your application."},{"type":"text","text":" "},{"type":"text","text":"Since it seems to be impossible to create that instance inside a framework at the moment, you have to provide it via this parameter."}]}]},{"name":"accelerometerInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The accelerometer update interval in Hertz. By default this is set to the supported maximum of 100 Hz."}]}]},{"name":"gyroInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The gyroscope update interval in Hertz. By default this is set to the supported maximum of 100 Hz."}]}]},{"name":"directionsInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The magnetometer update interval in Hertz. By default this is set to the supported maximum of 100 Hz."}]}]},{"name":"savingInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The interval in seconds to wait between saving data to the database. A higher number increses speed but requires more memory and leads to a bigger risk of data loss. A lower number incurs higher demands on the systems processing speed."}]}]},{"name":"dataManager","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"CoreData"},{"type":"text","text":" stack used to store, retrieve and update captured data to the local system until the App can transmit it to a server."}]}]},{"name":"eventHandler","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An optional handler used by the capturing process to inform about "},{"type":"codeVoice","code":"DataCapturingEvent"},{"type":"text","text":"s."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new completely initialized "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" accessing data a certain amount of times per second."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sensorManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMMotionManager","preciseIdentifier":"c:objc(cs)CMMotionManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accelerometerInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"gyroInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"directionsInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"savingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"dataManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eventHandler"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:13DataCapturing6StatusO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"))"}],"title":"init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing0aB7ServiceC13sensorManager21accelerometerInterval04gyroG0010directionsG006savingG004dataE012eventHandlerACSo08CMMotionE0C_S4dAA04CoreaE0CyAA0aB5EventO_AA6StatusOtctcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager":{"role":"symbol","title":"CoreDataManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}],"url":"\/documentation\/datacapturing\/coredatamanager"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status":{"deprecated":true,"role":"symbol","title":"Status","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[{"type":"text","text":"The status returned by asynchronous callback handlers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/datacapturing\/status"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)":{"role":"symbol","title":"init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sensorManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMMotionManager","preciseIdentifier":"c:objc(cs)CMMotionManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accelerometerInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"gyroInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"directionsInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"savingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"dataManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eventHandler"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:13DataCapturing6StatusO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"))"}],"abstract":[{"type":"text","text":"Creates a new completely initialized "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" accessing data a certain amount of times per second."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/ispaused.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/ispaused.json deleted file mode 100644 index 3bd9d4b4..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/ispaused.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/ispaused"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/isPaused","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"true"},{"type":"text","text":" if data capturing was running but is currently paused; "},{"type":"codeVoice","code":"false"},{"type":"text","text":" otherwise."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isPaused","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing0aB7ServiceC8isPausedSbvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/isPaused":{"role":"symbol","title":"isPaused","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPaused"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"codeVoice","code":"true"},{"type":"text","text":" if data capturing was running but is currently paused; "},{"type":"codeVoice","code":"false"},{"type":"text","text":" otherwise."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/isPaused","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/ispaused"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/isrunning.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/isrunning.json deleted file mode 100644 index ee4bebc0..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/isrunning.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/isrunning"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/isRunning","interfaceLanguage":"swift"},"abstract":[{"type":"codeVoice","code":"true"},{"type":"text","text":" if data capturing is running; "},{"type":"codeVoice","code":"false"},{"type":"text","text":" otherwise."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isRunning","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing0aB7ServiceC9isRunningSbvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/isRunning":{"role":"symbol","title":"isRunning","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isRunning"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"codeVoice","code":"true"},{"type":"text","text":" if data capturing is running; "},{"type":"codeVoice","code":"false"},{"type":"text","text":" otherwise."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/isRunning","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/isrunning"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/locationmanager(_:didfailwitherror:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/locationmanager(_:didfailwitherror:).json deleted file mode 100644 index 40a25d11..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/locationmanager(_:didfailwitherror:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"manager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocationManager","preciseIdentifier":"c:objc(cs)CLLocationManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailWithError"},{"kind":"text","text":" "},{"kind":"internalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"manager","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location manager reporting the error."}]}]},{"name":"didFailWithError","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The reported error."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/locationmanager(_:didfailwitherror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationManager(_:didFailWithError:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The listener method informed about error during location tracking. Just prints those errors to the log."}],"kind":"symbol","metadata":{"role":"symbol","title":"locationManager(_:didFailWithError:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CLLocationManager","preciseIdentifier":"c:objc(cs)CLLocationManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailWithError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)DataCapturingService(im)locationManager:didFailWithError:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/CLLocationManagerDelegate-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/locationManager(_:didFailWithError:)":{"role":"symbol","title":"locationManager(_:didFailWithError:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CLLocationManager","preciseIdentifier":"c:objc(cs)CLLocationManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didFailWithError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The listener method informed about error during location tracking. Just prints those errors to the log."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationManager(_:didFailWithError:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/locationmanager(_:didfailwitherror:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/CLLocationManagerDelegate-Implementations":{"role":"collectionGroup","title":"CLLocationManagerDelegate Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/CLLocationManagerDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/cllocationmanagerdelegate-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/locationmanager(_:didupdatelocations:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/locationmanager(_:didupdatelocations:).json deleted file mode 100644 index f96acf75..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/locationmanager(_:didupdatelocations:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationManager"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"manager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocationManager","preciseIdentifier":"c:objc(cs)CLLocationManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateLocations"},{"kind":"text","text":" "},{"kind":"internalParam","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"manager","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location manager used."}]}]},{"name":"didUpdateLocation","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An array of the updated locations."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/locationmanager(_:didupdatelocations:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationManager(_:didUpdateLocations:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The listener method that is informed about new geo locations."}],"kind":"symbol","metadata":{"role":"symbol","title":"locationManager(_:didUpdateLocations:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CLLocationManager","preciseIdentifier":"c:objc(cs)CLLocationManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":"])"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)DataCapturingService(im)locationManager:didUpdateLocations:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/CLLocationManagerDelegate-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/CLLocationManagerDelegate-Implementations":{"role":"collectionGroup","title":"CLLocationManagerDelegate Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/CLLocationManagerDelegate-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/cllocationmanagerdelegate-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/locationManager(_:didUpdateLocations:)":{"role":"symbol","title":"locationManager(_:didUpdateLocations:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationManager"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CLLocationManager","preciseIdentifier":"c:objc(cs)CLLocationManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"didUpdateLocations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":"])"}],"abstract":[{"type":"text","text":"The listener method that is informed about new geo locations."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationManager(_:didUpdateLocations:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/locationmanager(_:didupdatelocations:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/locationupdateskiprate.json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/locationupdateskiprate.json deleted file mode 100644 index 17d4ba20..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/locationupdateskiprate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationUpdateSkipRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/locationupdateskiprate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationUpdateSkipRate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Locations are captured approximately once per second on most devices. If you would like to get fewer updates this parameter controls, how many events are skipped before one is reported to your handler. The default value is 1, which reports every event. To receive fewer events you could for example set it to 5 to only receive every fifth event."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationUpdateSkipRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"}],"title":"locationUpdateSkipRate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing0aB7ServiceC22locationUpdateSkipRateSuvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/locationUpdateSkipRate":{"role":"symbol","title":"locationUpdateSkipRate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationUpdateSkipRate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"}],"abstract":[{"type":"text","text":"Locations are captured approximately once per second on most devices. If you would like to get fewer updates this parameter controls, how many events are skipped before one is reported to your handler. The default value is 1, which reports every event. To receive fewer events you could for example set it to 5 to only receive every fifth event."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/locationUpdateSkipRate","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/locationupdateskiprate"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/pause().json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/pause().json deleted file mode 100644 index b06397f6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/pause().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/pause()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/pause()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Pauses the current data capturing measurement for the moment. No data is captured until "},{"type":"codeVoice","code":"resume()"},{"type":"text","text":" has been called, but upon the call to "},{"type":"codeVoice","code":"resume()"},{"type":"text","text":" the last measurement will be continued instead of beginning a new now."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"title":"pause()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing0aB7ServiceC5pauseyyKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/pause()":{"role":"symbol","title":"pause()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"pause"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Pauses the current data capturing measurement for the moment. No data is captured until "},{"type":"codeVoice","code":"resume()"},{"type":"text","text":" has been called, but upon the call to "},{"type":"codeVoice","code":"resume()"},{"type":"text","text":" the last measurement will be continued instead of beginning a new now."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/pause()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/pause()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/resume().json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/resume().json deleted file mode 100644 index 31deb06e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/resume().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"resume"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/resume()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/resume()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Resumes the current data capturing with the data capturing measurement that was running when "},{"type":"codeVoice","code":"pause()"},{"type":"text","text":" was called. A call to this method is only valid after a call to "},{"type":"codeVoice","code":"pause()"},{"type":"text","text":". It is going to fail if used after "},{"type":"codeVoice","code":"start()"},{"type":"text","text":" or "},{"type":"codeVoice","code":"stop()"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"resume"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"title":"resume()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing0aB7ServiceC6resumeyyKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/resume()":{"role":"symbol","title":"resume()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"resume"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Resumes the current data capturing with the data capturing measurement that was running when "},{"type":"codeVoice","code":"pause()"},{"type":"text","text":" was called. A call to this method is only valid after a call to "},{"type":"codeVoice","code":"pause()"},{"type":"text","text":". It is going to fail if used after "},{"type":"codeVoice","code":"start()"},{"type":"text","text":" or "},{"type":"codeVoice","code":"stop()"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/resume()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/resume()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/start(inmode:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/start(inmode:).json deleted file mode 100644 index d467670a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/start(inmode:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"start"},{"kind":"text","text":"("},{"kind":"externalParam","text":"inMode"},{"kind":"text","text":" "},{"kind":"internalParam","text":"modality"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"modality","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The mode of transportation to use for the newly created measurement. This should be something like “car” or “bicycle”."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This startup procedure is asynchronous."},{"type":"text","text":" "},{"type":"text","text":"The event handler provided to the initializer receives a "},{"type":"codeVoice","code":"DataCapturingEvent.serviceStarted"},{"type":"text","text":", after the startup has finished."},{"type":"text","text":" "},{"type":"text","text":"If an error happened during this process, it is provided as part of this handlers "},{"type":"codeVoice","code":"Status"},{"type":"text","text":" argument."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/start(inmode:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/start(inMode:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Starts the capturing process."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"start"},{"kind":"text","text":"("},{"kind":"externalParam","text":"inMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"start(inMode:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing0aB7ServiceC5start6inModeySS_tKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/start(inMode:)":{"role":"symbol","title":"start(inMode:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"start"},{"kind":"text","text":"("},{"kind":"externalParam","text":"inMode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Starts the capturing process."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/start(inMode:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/start(inmode:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/stop().json b/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/stop().json deleted file mode 100644 index 790209f5..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/datacapturingservice/stop().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/datacapturingservice\/stop()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/stop()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stops the currently running or paused data capturing process or does nothing if the process is not"},{"type":"text","text":" "},{"type":"text","text":"running."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"title":"stop()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing0aB7ServiceC4stopyyKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService/stop()":{"role":"symbol","title":"stop()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"stop"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Stops the currently running or paused data capturing process or does nothing if the process is not"},{"type":"text","text":" "},{"type":"text","text":"running."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService\/stop()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/datacapturingservice\/stop()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy.json b/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy.json deleted file mode 100644 index ad3028bb..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.2.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/defaultdistancecalculationstrategy"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Calculates the distance between two locations based on the internal distance function provided by iOS."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"title":"DefaultDistanceCalculationStrategy","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing34DefaultDistanceCalculationStrategyC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/init()"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-4g3on","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-8psef","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-9cuta"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy/calculateDistance(from:to:)-8psef":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")) -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Calculate the distance between two coordinate pairs"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-8psef","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/calculatedistance(from:to:)-8psef"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy/calculateDistance(from:to:)-4g3on":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"This is similar to "},{"type":"codeVoice","code":"calculateDistance(:CLLocation,:CLLocation)"},{"type":"text","text":" but accepts "},{"type":"codeVoice","code":"GeoLocationMO"},{"type":"text","text":" arguments."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-4g3on","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/calculatedistance(from:to:)-4g3on"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"A no-argument default consturctor."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy":{"role":"symbol","title":"DistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"DistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"This protocol provides a way to calculate the distance between two geo locations in meters."},{"type":"text","text":" "},{"type":"text","text":"Different implementations are possible."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/distancecalculationstrategy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy/calculateDistance(from:to:)-9cuta":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Calculate the distance in meters between the provided "},{"type":"codeVoice","code":"CLLocation"},{"type":"text","text":" instances."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-9cuta","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/calculatedistance(from:to:)-9cuta"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy":{"role":"symbol","title":"DefaultDistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"Calculates the distance between two locations based on the internal distance function provided by iOS."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/calculatedistance(from:to:)-4g3on.json b/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/calculatedistance(from:to:)-4g3on.json deleted file mode 100644 index 78969b5a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/calculatedistance(from:to:)-4g3on.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"previousLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to start the distance calculation from"}]}]},{"name":"to","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to calculate the distance to"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/calculatedistance(from:to:)-4g3on"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-4g3on","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This is similar to "},{"type":"codeVoice","code":"calculateDistance(:CLLocation,:CLLocation)"},{"type":"text","text":" but accepts "},{"type":"codeVoice","code":"GeoLocationMO"},{"type":"text","text":" arguments."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"calculateDistance(from:to:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing34DefaultDistanceCalculationStrategyC09calculateD04from2toSdAA13GeoLocationMOC_AHtF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy/calculateDistance(from:to:)-4g3on":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"This is similar to "},{"type":"codeVoice","code":"calculateDistance(:CLLocation,:CLLocation)"},{"type":"text","text":" but accepts "},{"type":"codeVoice","code":"GeoLocationMO"},{"type":"text","text":" arguments."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-4g3on","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/calculatedistance(from:to:)-4g3on"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy":{"role":"symbol","title":"DefaultDistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"Calculates the distance between two locations based on the internal distance function provided by iOS."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/calculatedistance(from:to:)-8psef.json b/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/calculatedistance(from:to:)-8psef.json deleted file mode 100644 index 6c53fc00..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/calculatedistance(from:to:)-8psef.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"previousLocationLatLonCoordinates"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"locationLatLonCoordinates"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")) -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The source coordinate pair, where the first element is the latitude and the second is longitude"}]}]},{"name":"to","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target coordinate pair, where the first element is the latitude and the second is longitude"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/calculatedistance(from:to:)-8psef"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-8psef","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Calculate the distance between two coordinate pairs"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")) -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"calculateDistance(from:to:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing34DefaultDistanceCalculationStrategyC09calculateD04from2toS2d_Sdt_Sd_SdttF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy/calculateDistance(from:to:)-8psef":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")) -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Calculate the distance between two coordinate pairs"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-8psef","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/calculatedistance(from:to:)-8psef"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy":{"role":"symbol","title":"DefaultDistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"Calculates the distance between two locations based on the internal distance function provided by iOS."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/calculatedistance(from:to:)-9cuta.json b/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/calculatedistance(from:to:)-9cuta.json deleted file mode 100644 index 0a3560bd..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/calculatedistance(from:to:)-9cuta.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"previousLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to start the distance calculation from"}]}]},{"name":"to","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to calculate the distance to"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/calculatedistance(from:to:)-9cuta"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-9cuta","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Calculate the distance in meters between the provided "},{"type":"codeVoice","code":"CLLocation"},{"type":"text","text":" instances."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"calculateDistance(from:to:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing34DefaultDistanceCalculationStrategyC09calculateD04from2toSdSo10CLLocationC_AHtF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy":{"role":"symbol","title":"DefaultDistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"Calculates the distance between two locations based on the internal distance function provided by iOS."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy/calculateDistance(from:to:)-9cuta":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Calculate the distance in meters between the provided "},{"type":"codeVoice","code":"CLLocation"},{"type":"text","text":" instances."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/calculateDistance(from:to:)-9cuta","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/calculatedistance(from:to:)-9cuta"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/init().json b/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/init().json deleted file mode 100644 index 396b92a1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/defaultdistancecalculationstrategy/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A no-argument default consturctor."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing34DefaultDistanceCalculationStrategyCACycfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"A no-argument default consturctor."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy":{"role":"symbol","title":"DefaultDistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"Calculates the distance between two locations based on the internal distance function provided by iOS."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/defaulttrackcleaner.json b/DataCapturing.doccarchive/data/documentation/datacapturing/defaulttrackcleaner.json deleted file mode 100644 index 2aa93f71..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/defaulttrackcleaner.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultTrackCleaner"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"4.5.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/defaulttrackcleaner"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultTrackCleaner"}],"title":"DefaultTrackCleaner","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing19DefaultTrackCleanerC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"DefaultTrackCleaner"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner\/init()"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner\/isValid(location:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultTrackCleaner/isValid(location:)":{"role":"symbol","title":"isValid(location:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":"("},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Checks whether the provided "},{"type":"codeVoice","code":"location"},{"type":"text","text":" is valid within this cleaner."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner\/isValid(location:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaulttrackcleaner\/isvalid(location:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultTrackCleaner/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Default no argument constructor made public"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaulttrackcleaner\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultTrackCleaner":{"role":"symbol","title":"DefaultTrackCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultTrackCleaner"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultTrackCleaner"}],"url":"\/documentation\/datacapturing\/defaulttrackcleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackCleaner":{"role":"symbol","title":"TrackCleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackCleaner"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackCleaner"}],"url":"\/documentation\/datacapturing\/trackcleaner"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/defaulttrackcleaner/init().json b/DataCapturing.doccarchive/data/documentation/datacapturing/defaulttrackcleaner/init().json deleted file mode 100644 index cee83c13..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/defaulttrackcleaner/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/defaulttrackcleaner\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Default no argument constructor made public"}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing19DefaultTrackCleanerCACycfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultTrackCleaner/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Default no argument constructor made public"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaulttrackcleaner\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultTrackCleaner":{"role":"symbol","title":"DefaultTrackCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultTrackCleaner"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultTrackCleaner"}],"url":"\/documentation\/datacapturing\/defaulttrackcleaner"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/defaulttrackcleaner/isvalid(location:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/defaulttrackcleaner/isvalid(location:).json deleted file mode 100644 index ca82ecef..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/defaulttrackcleaner/isvalid(location:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":"("},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"location","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to check for validity"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/defaulttrackcleaner\/isvalid(location:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner\/isValid(location:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Checks whether the provided "},{"type":"codeVoice","code":"location"},{"type":"text","text":" is valid within this cleaner."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":"("},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isValid(location:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing19DefaultTrackCleanerC7isValid8locationSbSo10CLLocationC_tF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultTrackCleaner":{"role":"symbol","title":"DefaultTrackCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultTrackCleaner"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultTrackCleaner"}],"url":"\/documentation\/datacapturing\/defaulttrackcleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultTrackCleaner/isValid(location:)":{"role":"symbol","title":"isValid(location:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":"("},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Checks whether the provided "},{"type":"codeVoice","code":"location"},{"type":"text","text":" is valid within this cleaner."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner\/isValid(location:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/defaulttrackcleaner\/isvalid(location:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/deletioncleaner.json b/DataCapturing.doccarchive/data/documentation/datacapturing/deletioncleaner.json deleted file mode 100644 index 5c7f066a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/deletioncleaner.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeletionCleaner"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.3.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/deletioncleaner"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A cleaner removing each synchronized measurement from the database completely."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeletionCleaner"}],"title":"DeletionCleaner","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing15DeletionCleanerC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"DeletionCleaner"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner\/init()"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner\/clean(measurement:from:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DeletionCleaner":{"role":"symbol","title":"DeletionCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeletionCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing each synchronized measurement from the database completely."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeletionCleaner"}],"url":"\/documentation\/datacapturing\/deletioncleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Cleaner":{"role":"symbol","title":"Cleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Cleaner"}],"abstract":[{"type":"text","text":"Implementations of this protocol are responsible for cleaning the database after a synchronization run."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Cleaner"}],"url":"\/documentation\/datacapturing\/cleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DeletionCleaner/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Public default constructor required to create instances of this class."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/deletioncleaner\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DeletionCleaner/clean(measurement:from:)":{"role":"symbol","title":"clean(measurement:from:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Cleans the database after a measurement has been synchronized."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner\/clean(measurement:from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/deletioncleaner\/clean(measurement:from:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/deletioncleaner/clean(measurement:from:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/deletioncleaner/clean(measurement:from:).json deleted file mode 100644 index 76b5c5fe..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/deletioncleaner/clean(measurement:from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"persistenceLayer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC","text":"PersistenceLayer"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"measurement","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The measurement to clean."}]}]},{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":" to call for cleaning the data."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/deletioncleaner\/clean(measurement:from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner\/clean(measurement:from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Cleans the database after a measurement has been synchronized."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"clean(measurement:from:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing15DeletionCleanerC5clean11measurement4fromys5Int64V_AA16PersistenceLayerCtKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DeletionCleaner":{"role":"symbol","title":"DeletionCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeletionCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing each synchronized measurement from the database completely."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeletionCleaner"}],"url":"\/documentation\/datacapturing\/deletioncleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DeletionCleaner/clean(measurement:from:)":{"role":"symbol","title":"clean(measurement:from:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"clean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PersistenceLayer","preciseIdentifier":"s:13DataCapturing16PersistenceLayerC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Cleans the database after a measurement has been synchronized."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner\/clean(measurement:from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/deletioncleaner\/clean(measurement:from:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/deletioncleaner/init().json b/DataCapturing.doccarchive/data/documentation/datacapturing/deletioncleaner/init().json deleted file mode 100644 index a0904f33..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/deletioncleaner/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/deletioncleaner\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Public default constructor required to create instances of this class."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing15DeletionCleanerCACycfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DeletionCleaner":{"role":"symbol","title":"DeletionCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DeletionCleaner"}],"abstract":[{"type":"text","text":"A cleaner removing each synchronized measurement from the database completely."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DeletionCleaner"}],"url":"\/documentation\/datacapturing\/deletioncleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DeletionCleaner/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Public default constructor required to create instances of this class."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DeletionCleaner\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/deletioncleaner\/init()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption.json b/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption.json deleted file mode 100644 index 6cf801ca..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DiskConsumption"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Since"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This space is mostly filled with unsynchronized "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"s."},{"type":"text","text":" "},{"type":"text","text":"To avoid filling up the users SD card it is advisable to delte "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"s as soon as they use up too much space."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/diskconsumption"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Objects of this class represent the current disk (or rather SD card) space used and available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DiskConsumption"}],"title":"DiskConsumption","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing15DiskConsumptionC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"DiskConsumption"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/init(consumedBytes:availableBytes:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/availableBytes","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/consumedBytes"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption/init(consumedBytes:availableBytes:)":{"role":"symbol","title":"init(consumedBytes:availableBytes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"consumedBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"availableBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new completely initialized "},{"type":"codeVoice","code":"DiskConsumption"},{"type":"text","text":" object."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/init(consumedBytes:availableBytes:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/diskconsumption\/init(consumedbytes:availablebytes:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption":{"role":"symbol","title":"DiskConsumption","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DiskConsumption"}],"abstract":[{"type":"text","text":"Objects of this class represent the current disk (or rather SD card) space used and available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DiskConsumption"}],"url":"\/documentation\/datacapturing\/diskconsumption"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption/availableBytes":{"role":"symbol","title":"availableBytes","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"availableBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The amount of bytes still available for the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/availableBytes","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/diskconsumption\/availablebytes"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption/consumedBytes":{"role":"symbol","title":"consumedBytes","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"consumedBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The amount of bytes currently used by the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/consumedBytes","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/diskconsumption\/consumedbytes"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption/availablebytes.json b/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption/availablebytes.json deleted file mode 100644 index 6c3252d1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption/availablebytes.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"availableBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/diskconsumption\/availablebytes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/availableBytes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The amount of bytes still available for the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"availableBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"availableBytes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing15DiskConsumptionC14availableBytesSivp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption":{"role":"symbol","title":"DiskConsumption","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DiskConsumption"}],"abstract":[{"type":"text","text":"Objects of this class represent the current disk (or rather SD card) space used and available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DiskConsumption"}],"url":"\/documentation\/datacapturing\/diskconsumption"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption/availableBytes":{"role":"symbol","title":"availableBytes","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"availableBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The amount of bytes still available for the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/availableBytes","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/diskconsumption\/availablebytes"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption/consumedbytes.json b/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption/consumedbytes.json deleted file mode 100644 index e0af87f5..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption/consumedbytes.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"consumedBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/diskconsumption\/consumedbytes"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/consumedBytes","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The amount of bytes currently used by the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"consumedBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"consumedBytes","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing15DiskConsumptionC13consumedBytesSivp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption/consumedBytes":{"role":"symbol","title":"consumedBytes","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"consumedBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"The amount of bytes currently used by the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/consumedBytes","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/diskconsumption\/consumedbytes"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption":{"role":"symbol","title":"DiskConsumption","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DiskConsumption"}],"abstract":[{"type":"text","text":"Objects of this class represent the current disk (or rather SD card) space used and available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DiskConsumption"}],"url":"\/documentation\/datacapturing\/diskconsumption"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption/init(consumedbytes:availablebytes:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption/init(consumedbytes:availablebytes:).json deleted file mode 100644 index a9b591e5..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/diskconsumption/init(consumedbytes:availablebytes:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"consumedBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"availableBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"consumedBytes","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The amount of bytes currently used by the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}]}]},{"name":"availableBytes","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The amount of bytes still available for the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":"."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/diskconsumption\/init(consumedbytes:availablebytes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/init(consumedBytes:availableBytes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new completely initialized "},{"type":"codeVoice","code":"DiskConsumption"},{"type":"text","text":" object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"consumedBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"availableBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"title":"init(consumedBytes:availableBytes:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing15DiskConsumptionC13consumedBytes09availableF0ACSi_Sitcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption/init(consumedBytes:availableBytes:)":{"role":"symbol","title":"init(consumedBytes:availableBytes:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"consumedBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"availableBytes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new completely initialized "},{"type":"codeVoice","code":"DiskConsumption"},{"type":"text","text":" object."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption\/init(consumedBytes:availableBytes:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/diskconsumption\/init(consumedbytes:availablebytes:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DiskConsumption":{"role":"symbol","title":"DiskConsumption","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DiskConsumption"}],"abstract":[{"type":"text","text":"Objects of this class represent the current disk (or rather SD card) space used and available."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DiskConsumption","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DiskConsumption"}],"url":"\/documentation\/datacapturing\/diskconsumption"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy.json b/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy.json deleted file mode 100644 index a28b4e6f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"DistanceCalculationStrategy"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.1.2"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.2.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/distancecalculationstrategy"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This protocol provides a way to calculate the distance between two geo locations in meters."},{"type":"text","text":" "},{"type":"text","text":"Different implementations are possible."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"DistanceCalculationStrategy"}],"title":"DistanceCalculationStrategy","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:13DataCapturing27DistanceCalculationStrategyP","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"DistanceCalculationStrategy"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-2xwdw","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-3xfm5","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-7wpr4"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy/calculateDistance(from:to:)-3xfm5":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")) -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Calculate the distance between two coordinate pairs"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-3xfm5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/distancecalculationstrategy\/calculatedistance(from:to:)-3xfm5"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultDistanceCalculationStrategy":{"role":"symbol","title":"DefaultDistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"Calculates the distance between two locations based on the internal distance function provided by iOS."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultDistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultDistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/defaultdistancecalculationstrategy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy/calculateDistance(from:to:)-7wpr4":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Calculate the distance in meters between the provided "},{"type":"codeVoice","code":"CLLocation"},{"type":"text","text":" instances."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-7wpr4","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/distancecalculationstrategy\/calculatedistance(from:to:)-7wpr4"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy":{"role":"symbol","title":"DistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"DistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"This protocol provides a way to calculate the distance between two geo locations in meters."},{"type":"text","text":" "},{"type":"text","text":"Different implementations are possible."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/distancecalculationstrategy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy/calculateDistance(from:to:)-2xwdw":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"This is similar to "},{"type":"codeVoice","code":"calculateDistance(:CLLocation,:CLLocation)"},{"type":"text","text":" but accepts "},{"type":"codeVoice","code":"GeoLocationMO"},{"type":"text","text":" arguments."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-2xwdw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/distancecalculationstrategy\/calculatedistance(from:to:)-2xwdw"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy/calculatedistance(from:to:)-2xwdw.json b/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy/calculatedistance(from:to:)-2xwdw.json deleted file mode 100644 index 4e27fefc..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy/calculatedistance(from:to:)-2xwdw.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"previousLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to start the distance calculation from"}]}]},{"name":"to","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to calculate the distance to"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/distancecalculationstrategy\/calculatedistance(from:to:)-2xwdw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-2xwdw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This is similar to "},{"type":"codeVoice","code":"calculateDistance(:CLLocation,:CLLocation)"},{"type":"text","text":" but accepts "},{"type":"codeVoice","code":"GeoLocationMO"},{"type":"text","text":" arguments."}],"kind":"symbol","metadata":{"role":"symbol","title":"calculateDistance(from:to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"symbolKind":"method","externalID":"s:13DataCapturing27DistanceCalculationStrategyP09calculateC04from2toSdAA13GeoLocationMOC_AHtF","required":true,"modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy/calculateDistance(from:to:)-2xwdw":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"This is similar to "},{"type":"codeVoice","code":"calculateDistance(:CLLocation,:CLLocation)"},{"type":"text","text":" but accepts "},{"type":"codeVoice","code":"GeoLocationMO"},{"type":"text","text":" arguments."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-2xwdw","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/distancecalculationstrategy\/calculatedistance(from:to:)-2xwdw"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy":{"role":"symbol","title":"DistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"DistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"This protocol provides a way to calculate the distance between two geo locations in meters."},{"type":"text","text":" "},{"type":"text","text":"Different implementations are possible."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/distancecalculationstrategy"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy/calculatedistance(from:to:)-3xfm5.json b/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy/calculatedistance(from:to:)-3xfm5.json deleted file mode 100644 index e9100dfd..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy/calculatedistance(from:to:)-3xfm5.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"previousLocationLatLonCoordinates"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"locationLatLonCoordinates"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")) -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The source coordinate pair, where the first element is the latitude and the second is longitude"}]}]},{"name":"to","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The target coordinate pair, where the first element is the latitude and the second is longitude"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/distancecalculationstrategy\/calculatedistance(from:to:)-3xfm5"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-3xfm5","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Calculate the distance between two coordinate pairs"}],"kind":"symbol","metadata":{"role":"symbol","title":"calculateDistance(from:to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")) -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"symbolKind":"method","externalID":"s:13DataCapturing27DistanceCalculationStrategyP09calculateC04from2toS2d_Sdt_Sd_SdttF","required":true,"modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy":{"role":"symbol","title":"DistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"DistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"This protocol provides a way to calculate the distance between two geo locations in meters."},{"type":"text","text":" "},{"type":"text","text":"Different implementations are possible."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/distancecalculationstrategy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy/calculateDistance(from:to:)-3xfm5":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")) -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Calculate the distance between two coordinate pairs"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-3xfm5","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/distancecalculationstrategy\/calculatedistance(from:to:)-3xfm5"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy/calculatedistance(from:to:)-7wpr4.json b/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy/calculatedistance(from:to:)-7wpr4.json deleted file mode 100644 index c81222d7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/distancecalculationstrategy/calculatedistance(from:to:)-7wpr4.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"previousLocation"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":" "},{"kind":"internalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to start the distance calculation from"}]}]},{"name":"to","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to calculate the distance to"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/distancecalculationstrategy\/calculatedistance(from:to:)-7wpr4"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-7wpr4","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Calculate the distance in meters between the provided "},{"type":"codeVoice","code":"CLLocation"},{"type":"text","text":" instances."}],"kind":"symbol","metadata":{"role":"symbol","title":"calculateDistance(from:to:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"symbolKind":"method","externalID":"s:13DataCapturing27DistanceCalculationStrategyP09calculateC04from2toSdSo10CLLocationC_AHtF","required":true,"modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy":{"role":"symbol","title":"DistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"DistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"This protocol provides a way to calculate the distance between two geo locations in meters."},{"type":"text","text":" "},{"type":"text","text":"Different implementations are possible."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/distancecalculationstrategy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy/calculateDistance(from:to:)-7wpr4":{"role":"symbol","title":"calculateDistance(from:to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"calculateDistance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":", "},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Calculate the distance in meters between the provided "},{"type":"codeVoice","code":"CLLocation"},{"type":"text","text":" instances."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy\/calculateDistance(from:to:)-7wpr4","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/distancecalculationstrategy\/calculatedistance(from:to:)-7wpr4"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/event.json b/DataCapturing.doccarchive/data/documentation/datacapturing/event.json deleted file mode 100644 index 1a574fd1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/event.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Version 1.0.0"}]}]}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/event"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"title":"Event","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing5EventC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"Event"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/description","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/measurement","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/time","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/type","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/value"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"An optional value if that is necessary."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/value","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/value"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A stringified variant of this object. Mostly used to pretty print instances during debugging."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/description"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/measurement":{"role":"symbol","title":"measurement","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" during which the event occured."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/measurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/time":{"role":"symbol","title":"time","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"abstract":[{"type":"text","text":"The time the event occured at."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/time","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/time"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"}],"abstract":[{"type":"text","text":"The type of the event."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/type","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/type"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/event/description.json b/DataCapturing.doccarchive/data/documentation/datacapturing/event/description.json deleted file mode 100644 index 19f19d0a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/event/description.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/event\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A stringified variant of this object. Mostly used to pretty print instances during debugging."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing5EventC11descriptionSSvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A stringified variant of this object. Mostly used to pretty print instances during debugging."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/description"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/event/measurement.json b/DataCapturing.doccarchive/data/documentation/datacapturing/event/measurement.json deleted file mode 100644 index e8834543..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/event/measurement.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/event\/measurement"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/measurement","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" during which the event occured."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"}],"title":"measurement","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing5EventC11measurementAA11MeasurementCvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/measurement":{"role":"symbol","title":"measurement","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"}],"abstract":[{"type":"text","text":"The "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" during which the event occured."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/measurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/measurement"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/event/time.json b/DataCapturing.doccarchive/data/documentation/datacapturing/event/time.json deleted file mode 100644 index 46c0ba8c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/event/time.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/event\/time"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/time","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The time the event occured at."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"title":"time","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing5EventC4time10Foundation4DateVvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/time":{"role":"symbol","title":"time","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"abstract":[{"type":"text","text":"The time the event occured at."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/time","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/time"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/event/type.json b/DataCapturing.doccarchive/data/documentation/datacapturing/event/type.json deleted file mode 100644 index 2b9d0d77..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/event/type.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO","text":"EventType"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/event\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The type of the event."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"}],"title":"type","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing5EventC4typeAA0C4TypeOvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"}],"abstract":[{"type":"text","text":"The type of the event."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/type","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/type"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/event/value.json b/DataCapturing.doccarchive/data/documentation/datacapturing/event/value.json deleted file mode 100644 index 61a5f0d5..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/event/value.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/event\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An optional value if that is necessary."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"value","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing5EventC5valueSSSgvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"An optional value if that is necessary."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event\/value","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/event\/value"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo.json deleted file mode 100644 index 5fb73e8f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(EventMO) "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventmo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":[],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/7Combine16ObservableObjectP","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSFetchRequestResult","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject","doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP","doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"title":"EventMO","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@DataCapturing@objc(cs)EventMO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"EventMO"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/init(entity:insertInto:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/measurement","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/time","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/type","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/typeEnum","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/value"]},{"title":"Type Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/fetchRequest()"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/fetchRequest()":{"role":"symbol","title":"fetchRequest()","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/fetchRequest()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/fetchrequest()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/typeEnum":{"role":"symbol","title":"typeEnum","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeEnum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"}],"abstract":[{"type":"text","text":"Translates between the enumeration fo "},{"type":"codeVoice","code":"EventType"},{"type":"text","text":" and the database representation."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/typeEnum","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/typeenum"},"doc://org.cocoapods.DataCapturing/objc(pl)NSFetchRequestResult":{"type":"unresolvable","title":"CoreData.NSFetchRequestResult","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSFetchRequestResult"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/type","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/type"},"doc://org.cocoapods.DataCapturing/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/init(entity:insertInto:)":{"role":"symbol","title":"init(entity:insertInto:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/init(entity:insertInto:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/init(entity:insertinto:)"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/value","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/value"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/time":{"role":"symbol","title":"time","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSDate","preciseIdentifier":"c:objc(cs)NSDate"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/time","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/time"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject"},"doc://org.cocoapods.DataCapturing/7Combine16ObservableObjectP":{"type":"unresolvable","title":"Combine.ObservableObject","identifier":"doc:\/\/org.cocoapods.DataCapturing\/7Combine16ObservableObjectP"},"doc://org.cocoapods.DataCapturing/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/measurement":{"role":"symbol","title":"measurement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/measurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/measurement"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/fetchrequest().json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/fetchrequest().json deleted file mode 100644 index f92ef0b3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/fetchrequest().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@nonobjc"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO","text":"EventMO"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventmo\/fetchrequest()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/fetchRequest()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"fetchRequest()","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:13DataCapturing7EventMOC12fetchRequestSo07NSFetchF0CyACGyFZ","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/fetchRequest()":{"role":"symbol","title":"fetchRequest()","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/fetchRequest()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/fetchrequest()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/init(entity:insertinto:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/init(entity:insertinto:).json deleted file mode 100644 index 95a72916..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/init(entity:insertinto:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":" "},{"kind":"internalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventmo\/init(entity:insertinto:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/init(entity:insertInto:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"title":"init(entity:insertInto:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@DataCapturing@objc(cs)EventMO(im)initWithEntity:insertIntoManagedObjectContext:","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/init(entity:insertInto:)":{"role":"symbol","title":"init(entity:insertInto:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/init(entity:insertInto:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/init(entity:insertinto:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/measurement.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/measurement.json deleted file mode 100644 index e0f87837..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/measurement.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO","text":"MeasurementMO"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventmo\/measurement"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/measurement","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"measurement","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)EventMO(py)measurement","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/measurement":{"role":"symbol","title":"measurement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/measurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/time.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/time.json deleted file mode 100644 index ac2fc855..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/time.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSDate","preciseIdentifier":"c:objc(cs)NSDate"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventmo\/time"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/time","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"time","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSDate","preciseIdentifier":"c:objc(cs)NSDate"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)EventMO(py)time","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/time":{"role":"symbol","title":"time","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSDate","preciseIdentifier":"c:objc(cs)NSDate"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/time","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/time"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/type.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/type.json deleted file mode 100644 index d86c3604..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/type.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventmo\/type"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/type","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"type","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)EventMO(py)type","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/type":{"role":"symbol","title":"type","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/type","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/type"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/typeenum.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/typeenum.json deleted file mode 100644 index caddf24b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/typeenum.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeEnum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO","text":"EventType"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventmo\/typeenum"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/typeEnum","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Translates between the enumeration fo "},{"type":"codeVoice","code":"EventType"},{"type":"text","text":" and the database representation."}],"kind":"symbol","metadata":{"role":"symbol","title":"typeEnum","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeEnum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"}],"symbolKind":"property","externalID":"s:13DataCapturing7EventMOC8typeEnumAA0C4TypeOvp","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/typeEnum":{"role":"symbol","title":"typeEnum","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeEnum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"}],"abstract":[{"type":"text","text":"Translates between the enumeration fo "},{"type":"codeVoice","code":"EventType"},{"type":"text","text":" and the database representation."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/typeEnum","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/typeenum"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/value.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/value.json deleted file mode 100644 index b645925d..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventmo/value.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventmo\/value"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/value","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"value","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)EventMO(py)value","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO/value":{"role":"symbol","title":"value","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO\/value","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventmo\/value"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype.json deleted file mode 100644 index 2ebe12f1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.1.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"4.6.1"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH","doc:\/\/org.cocoapods.DataCapturing\/SY"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"title":"EventType","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:13DataCapturing9EventTypeO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"EventType"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecyclePause","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleResume","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleStart","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleStop","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/modalityTypeChange"]},{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/init(rawValue:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/Equatable-Implementations","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/RawRepresentable-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/lifecycleResume":{"role":"symbol","title":"EventType.lifecycleResume","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleResume"}],"abstract":[{"type":"text","text":"An event logged after the service has successfully resumed"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleResume","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/lifecycleresume"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/SY":{"type":"unresolvable","title":"Swift.RawRepresentable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SY"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/rawrepresentable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/lifecyclePause":{"role":"symbol","title":"EventType.lifecyclePause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecyclePause"}],"abstract":[{"type":"text","text":"An event logged after the service has successfully paused"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecyclePause","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/lifecyclepause"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/lifecycleStop":{"role":"symbol","title":"EventType.lifecycleStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleStop"}],"abstract":[{"type":"text","text":"An event logged after the service has successfully stopped"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleStop","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/lifecyclestop"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/modalityTypeChange":{"role":"symbol","title":"EventType.modalityTypeChange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"modalityTypeChange"}],"abstract":[{"type":"text","text":"An event logged each time the client changes the modality used to capture the current measurement"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/modalityTypeChange","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/modalitytypechange"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/lifecycleStart":{"role":"symbol","title":"EventType.lifecycleStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleStart"}],"abstract":[{"type":"text","text":"An event logged after the service has successfully started"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleStart","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/lifecyclestart"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/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":"Int16","preciseIdentifier":"s:s5Int16V"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/init(rawvalue:)"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/!=(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/!=(_:_:).json deleted file mode 100644 index a09ce614..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/!=(_:_:)","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:13DataCapturing9EventTypeO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/Equatable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/equatable-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/equatable-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/equatable-implementations.json deleted file mode 100644 index a56d7704..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/!=(_:_:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/hash(into:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/hash(into:).json deleted file mode 100644 index 4833e1e0..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/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:13DataCapturing9EventTypeO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/RawRepresentable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/rawrepresentable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/hash(into:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/hashvalue.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/hashvalue.json deleted file mode 100644 index 18c3cfc8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/hashvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/hashvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/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:13DataCapturing9EventTypeO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/RawRepresentable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/RawRepresentable-Implementations":{"role":"collectionGroup","title":"RawRepresentable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/RawRepresentable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/rawrepresentable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/hashvalue"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/init(rawvalue:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/init(rawvalue:).json deleted file mode 100644 index 055e47bb..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/init(rawvalue:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?("},{"kind":"externalParam","text":"rawValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int16","preciseIdentifier":"s:s5Int16V"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/init(rawvalue:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/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":"Int16","preciseIdentifier":"s:s5Int16V"},{"kind":"text","text":")"}],"title":"init(rawValue:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing9EventTypeO8rawValueACSgs5Int16V_tcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/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":"Int16","preciseIdentifier":"s:s5Int16V"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/init(rawValue:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/init(rawvalue:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecyclepause.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecyclepause.json deleted file mode 100644 index e5339ffe..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecyclepause.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecyclePause"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/lifecyclepause"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecyclePause","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An event logged after the service has successfully paused"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecyclePause"}],"title":"EventType.lifecyclePause","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing9EventTypeO14lifecyclePauseyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/lifecyclePause":{"role":"symbol","title":"EventType.lifecyclePause","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecyclePause"}],"abstract":[{"type":"text","text":"An event logged after the service has successfully paused"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecyclePause","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/lifecyclepause"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecycleresume.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecycleresume.json deleted file mode 100644 index b510193e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecycleresume.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleResume"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/lifecycleresume"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleResume","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An event logged after the service has successfully resumed"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleResume"}],"title":"EventType.lifecycleResume","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing9EventTypeO15lifecycleResumeyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/lifecycleResume":{"role":"symbol","title":"EventType.lifecycleResume","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleResume"}],"abstract":[{"type":"text","text":"An event logged after the service has successfully resumed"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleResume","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/lifecycleresume"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecyclestart.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecyclestart.json deleted file mode 100644 index 364121b7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecyclestart.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleStart"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/lifecyclestart"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleStart","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An event logged after the service has successfully started"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleStart"}],"title":"EventType.lifecycleStart","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing9EventTypeO14lifecycleStartyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/lifecycleStart":{"role":"symbol","title":"EventType.lifecycleStart","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleStart"}],"abstract":[{"type":"text","text":"An event logged after the service has successfully started"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleStart","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/lifecyclestart"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecyclestop.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecyclestop.json deleted file mode 100644 index b95ded64..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/lifecyclestop.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleStop"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/lifecyclestop"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleStop","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An event logged after the service has successfully stopped"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleStop"}],"title":"EventType.lifecycleStop","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing9EventTypeO13lifecycleStopyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/lifecycleStop":{"role":"symbol","title":"EventType.lifecycleStop","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"lifecycleStop"}],"abstract":[{"type":"text","text":"An event logged after the service has successfully stopped"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/lifecycleStop","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/lifecyclestop"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/modalitytypechange.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/modalitytypechange.json deleted file mode 100644 index b63f6a41..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/modalitytypechange.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"modalityTypeChange"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/modalitytypechange"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/modalityTypeChange","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An event logged each time the client changes the modality used to capture the current measurement"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"modalityTypeChange"}],"title":"EventType.modalityTypeChange","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing9EventTypeO08modalityD6ChangeyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/modalityTypeChange":{"role":"symbol","title":"EventType.modalityTypeChange","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"modalityTypeChange"}],"abstract":[{"type":"text","text":"An event logged each time the client changes the modality used to capture the current measurement"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/modalityTypeChange","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/modalitytypechange"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/rawrepresentable-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/rawrepresentable-implementations.json deleted file mode 100644 index cf3f21b3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/eventtype/rawrepresentable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/eventtype\/rawrepresentable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/RawRepresentable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"RawRepresentable Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/hashValue"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/hash(into:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/hashValue","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/hashvalue"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType/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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/eventtype\/hash(into:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror.json deleted file mode 100644 index 1aef7df2..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSupportError"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"codeListing","syntax":null,"code":["case notReadable"]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/filesupporterror"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP","doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Errors created by the Cyface SDK associated with accessing the file system."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSupportError"}],"title":"FileSupportError","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:13DataCapturing16FileSupportErrorO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"FileSupportError"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/notReadable(cause:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/Error-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP"},"doc://org.cocoapods.DataCapturing/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/notReadable(cause:)":{"role":"symbol","title":"FileSupportError.notReadable(cause:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notReadable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"cause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This error is thrown if the file system was not readable."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/notReadable(cause:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/notreadable(cause:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError":{"role":"symbol","title":"FileSupportError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSupportError"}],"abstract":[{"type":"text","text":"Errors created by the Cyface SDK associated with accessing the file system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSupportError"}],"url":"\/documentation\/datacapturing\/filesupporterror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/asaferror(orfailwith:file:line:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/asaferror(orfailwith:file:line:).json deleted file mode 100644 index dbb7484c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/asaferror(orfailwith:file:line:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":" "},{"kind":"internalParam","text":"message"},{"kind":"text","text":": "},{"kind":"attribute","text":"@autoclosure "},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#file"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#line"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/filesupporterror\/asaferror(orfailwith:file:line:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/asAFError(orFailWith:file:line:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"symbolKind":"method","externalID":"s:s5ErrorP9AlamofireE9asAFError10orFailWith4file4lineAC0D0OSSyXK_s12StaticStringVSutF::SYNTHESIZED::s:13DataCapturing16FileSupportErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError":{"role":"symbol","title":"FileSupportError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSupportError"}],"abstract":[{"type":"text","text":"Errors created by the Cyface SDK associated with accessing the file system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSupportError"}],"url":"\/documentation\/datacapturing\/filesupporterror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/asaferror(orfailwith:file:line:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/asaferror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/asaferror.json deleted file mode 100644 index 3c19e32f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/asaferror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/filesupporterror\/asaferror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/asAFError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp::SYNTHESIZED::s:13DataCapturing16FileSupportErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError":{"role":"symbol","title":"FileSupportError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSupportError"}],"abstract":[{"type":"text","text":"Errors created by the Cyface SDK associated with accessing the file system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSupportError"}],"url":"\/documentation\/datacapturing\/filesupporterror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/error-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/error-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/error-implementations.json deleted file mode 100644 index 45235bdf..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/filesupporterror\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/Error-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/asAFError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/localizedDescription"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/asAFError(orFailWith:file:line:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError":{"role":"symbol","title":"FileSupportError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSupportError"}],"abstract":[{"type":"text","text":"Errors created by the Cyface SDK associated with accessing the file system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSupportError"}],"url":"\/documentation\/datacapturing\/filesupporterror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/localizeddescription"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/asaferror(orfailwith:file:line:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/localizeddescription.json b/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/localizeddescription.json deleted file mode 100644 index 8e9bb1d6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/filesupporterror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:13DataCapturing16FileSupportErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/localizeddescription"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError":{"role":"symbol","title":"FileSupportError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSupportError"}],"abstract":[{"type":"text","text":"Errors created by the Cyface SDK associated with accessing the file system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSupportError"}],"url":"\/documentation\/datacapturing\/filesupporterror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/error-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/notreadable(cause:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/notreadable(cause:).json deleted file mode 100644 index a2527c05..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/filesupporterror/notreadable(cause:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notReadable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"cause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"cause: Another error, from system level, providing more detailed information."}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/filesupporterror\/notreadable(cause:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/notReadable(cause:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This error is thrown if the file system was not readable."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notReadable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"cause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"title":"FileSupportError.notReadable(cause:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing16FileSupportErrorO11notReadableyACs0E0_p_tcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError/notReadable(cause:)":{"role":"symbol","title":"FileSupportError.notReadable(cause:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notReadable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"cause"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"This error is thrown if the file system was not readable."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError\/notReadable(cause:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/filesupporterror\/notreadable(cause:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/FileSupportError":{"role":"symbol","title":"FileSupportError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"FileSupportError"}],"abstract":[{"type":"text","text":"Errors created by the Cyface SDK associated with accessing the file system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/FileSupportError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"FileSupportError"}],"url":"\/documentation\/datacapturing\/filesupporterror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation.json deleted file mode 100644 index 9de9da2d..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Each measurement received by the "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" leads to the creation of one "},{"type":"codeVoice","code":"GeoLocation"},{"type":"text","text":" instance. They are kept in memory until saved to persistent storage."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"DO NOT confuse this class with "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" generated model object "},{"type":"codeVoice","code":"GeoLocationMO"},{"type":"text","text":". Since the model object is not thread safe you should use an instance of this class if you hand data between processes."}]}],"type":"aside","name":"Remark"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.1.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"title":"GeoLocation","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing11GeoLocationC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/init(latitude:longitude:accuracy:speed:timestamp:isValid:parent:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/accuracy","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/description","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/isValid","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/latitude","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/longitude","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/speed","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/timestamp","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/track"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/init(latitude:longitude:accuracy:speed:timestamp:isValid:parent:)":{"role":"symbol","title":"init(latitude:longitude:accuracy:speed:timestamp:isValid:parent:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new "},{"type":"codeVoice","code":"GeoLocation"},{"type":"text","text":" with all the values set individually."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/init(latitude:longitude:accuracy:speed:timestamp:isValid:parent:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/init(latitude:longitude:accuracy:speed:timestamp:isvalid:parent:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/track":{"role":"symbol","title":"track","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"}],"abstract":[{"type":"text","text":"The track this location belongs to"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/track","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/latitude":{"role":"symbol","title":"latitude","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The locations latitude coordinate as a value from -90.0 to 90.0 in south and north direction."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/latitude","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/latitude"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/accuracy":{"role":"symbol","title":"accuracy","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The estimated accuracy of the measurement in meters."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/accuracy","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/accuracy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/longitude":{"role":"symbol","title":"longitude","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The locations longitude coordinate as a value from -180.0 to 180.0 in west and east direction."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/longitude","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/longitude"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A human readable description of this object."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/description"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/speed":{"role":"symbol","title":"speed","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The speed the device was moving during the measurement in meters per second."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/speed","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/speed"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/isValid":{"role":"symbol","title":"isValid","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not this is a valid location in a cleaned track."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/isValid","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/isvalid"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"The time the measurement happened at in milliseconds since the 1st of january 1970."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/timestamp"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/accuracy.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/accuracy.json deleted file mode 100644 index 3435d528..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/accuracy.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation\/accuracy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/accuracy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The estimated accuracy of the measurement in meters."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"accuracy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11GeoLocationC8accuracySdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/accuracy":{"role":"symbol","title":"accuracy","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The estimated accuracy of the measurement in meters."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/accuracy","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/accuracy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/description.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/description.json deleted file mode 100644 index 3f348f61..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/description.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A human readable description of this object."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11GeoLocationC11descriptionSSvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A human readable description of this object."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/description"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/init(latitude:longitude:accuracy:speed:timestamp:isvalid:parent:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/init(latitude:longitude:accuracy:speed:timestamp:isvalid:parent:).json deleted file mode 100644 index 0bb2a087..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/init(latitude:longitude:accuracy:speed:timestamp:isvalid:parent:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true, "},{"kind":"externalParam","text":"parent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","preciseIdentifier":"s:13DataCapturing5TrackC","text":"Track"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"latitude","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The locations latitude coordinate as a value from -90.0 to 90.0 in south and north direction."}]}]},{"name":"longitude","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The locations longitude coordinate as a value from -180.0 to 180.0 in west and east direction."}]}]},{"name":"accuracy","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The estimated accuracy of the measurement in meters."}]}]},{"name":"speed","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The speed the device was moving during the measurement in meters per second."}]}]},{"name":"timestamp","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The time the measurement happened at in milliseconds since the 1st of january 1970."}]}]},{"name":"isValid","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Whether or not this is a valid location in a cleaned track."}]}]},{"name":"parent","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The track this location belongs to"}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"After creation you must add this new object to the parent, via "},{"type":"codeVoice","code":"append"},{"type":"text","text":"."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation\/init(latitude:longitude:accuracy:speed:timestamp:isvalid:parent:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/init(latitude:longitude:accuracy:speed:timestamp:isValid:parent:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new "},{"type":"codeVoice","code":"GeoLocation"},{"type":"text","text":" with all the values set individually."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":")"}],"title":"init(latitude:longitude:accuracy:speed:timestamp:isValid:parent:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing11GeoLocationC8latitude9longitude8accuracy5speed9timestamp7isValid6parentACSd_S3ds6UInt64VSbAA5TrackCtcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/init(latitude:longitude:accuracy:speed:timestamp:isValid:parent:)":{"role":"symbol","title":"init(latitude:longitude:accuracy:speed:timestamp:isValid:parent:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parent"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Creates a new "},{"type":"codeVoice","code":"GeoLocation"},{"type":"text","text":" with all the values set individually."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/init(latitude:longitude:accuracy:speed:timestamp:isValid:parent:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/init(latitude:longitude:accuracy:speed:timestamp:isvalid:parent:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/isvalid.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/isvalid.json deleted file mode 100644 index 40036822..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/isvalid.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation\/isvalid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/isValid","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Whether or not this is a valid location in a cleaned track."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isValid","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11GeoLocationC7isValidSbvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/isValid":{"role":"symbol","title":"isValid","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not this is a valid location in a cleaned track."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/isValid","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/isvalid"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/latitude.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/latitude.json deleted file mode 100644 index ef10039a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/latitude.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation\/latitude"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/latitude","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The locations latitude coordinate as a value from -90.0 to 90.0 in south and north direction."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"latitude","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11GeoLocationC8latitudeSdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/latitude":{"role":"symbol","title":"latitude","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The locations latitude coordinate as a value from -90.0 to 90.0 in south and north direction."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/latitude","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/latitude"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/longitude.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/longitude.json deleted file mode 100644 index c380ef37..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/longitude.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation\/longitude"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/longitude","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The locations longitude coordinate as a value from -180.0 to 180.0 in west and east direction."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"longitude","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11GeoLocationC9longitudeSdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/longitude":{"role":"symbol","title":"longitude","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The locations longitude coordinate as a value from -180.0 to 180.0 in west and east direction."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/longitude","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/longitude"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/speed.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/speed.json deleted file mode 100644 index 8130efcd..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/speed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation\/speed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/speed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The speed the device was moving during the measurement in meters per second."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"speed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11GeoLocationC5speedSdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/speed":{"role":"symbol","title":"speed","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The speed the device was moving during the measurement in meters per second."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/speed","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/speed"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/timestamp.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/timestamp.json deleted file mode 100644 index a8968b6a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/timestamp.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation\/timestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/timestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The time the measurement happened at in milliseconds since the 1st of january 1970."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"title":"timestamp","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11GeoLocationC9timestamps6UInt64Vvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"The time the measurement happened at in milliseconds since the 1st of january 1970."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/timestamp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/track.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/track.json deleted file mode 100644 index 9365dd89..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocation/track.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","preciseIdentifier":"s:13DataCapturing5TrackC","text":"Track"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocation\/track"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/track","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The track this location belongs to"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"}],"title":"track","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11GeoLocationC5trackAA5TrackCvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation/track":{"role":"symbol","title":"track","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"}],"abstract":[{"type":"text","text":"The track this location belongs to"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation\/track","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocation\/track"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo.json deleted file mode 100644 index 5ebd8c76..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(GeoLocationMO) "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":[],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/7Combine16ObservableObjectP","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSFetchRequestResult","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject","doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP","doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"title":"GeoLocationMO","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@DataCapturing@objc(cs)GeoLocationMO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/init(entity:insertInto:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/accuracy","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/isPartOfCleanedTrack","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/lat","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/lon","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/speed","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/timestamp","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/track"]},{"title":"Type Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/fetchRequest()"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/fetchRequest()":{"role":"symbol","title":"fetchRequest()","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/fetchRequest()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/fetchrequest()"},"doc://org.cocoapods.DataCapturing/7Combine16ObservableObjectP":{"type":"unresolvable","title":"Combine.ObservableObject","identifier":"doc:\/\/org.cocoapods.DataCapturing\/7Combine16ObservableObjectP"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/speed":{"role":"symbol","title":"speed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/speed","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/speed"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/timestamp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/lon":{"role":"symbol","title":"lon","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/lon","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/lon"},"doc://org.cocoapods.DataCapturing/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP"},"doc://org.cocoapods.DataCapturing/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/objc(pl)NSFetchRequestResult":{"type":"unresolvable","title":"CoreData.NSFetchRequestResult","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSFetchRequestResult"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/accuracy":{"role":"symbol","title":"accuracy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/accuracy","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/accuracy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/lat":{"role":"symbol","title":"lat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/lat","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/lat"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/track":{"role":"symbol","title":"track","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/track","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/init(entity:insertInto:)":{"role":"symbol","title":"init(entity:insertInto:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/init(entity:insertInto:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/init(entity:insertinto:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/isPartOfCleanedTrack":{"role":"symbol","title":"isPartOfCleanedTrack","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPartOfCleanedTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/isPartOfCleanedTrack","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/ispartofcleanedtrack"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/accuracy.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/accuracy.json deleted file mode 100644 index d57e6fe1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/accuracy.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo\/accuracy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/accuracy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"accuracy","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)GeoLocationMO(py)accuracy","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/accuracy":{"role":"symbol","title":"accuracy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/accuracy","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/accuracy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/fetchrequest().json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/fetchrequest().json deleted file mode 100644 index 83737420..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/fetchrequest().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@nonobjc"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo\/fetchrequest()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/fetchRequest()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"fetchRequest()","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:13DataCapturing13GeoLocationMOC12fetchRequestSo07NSFetchG0CyACGyFZ","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/fetchRequest()":{"role":"symbol","title":"fetchRequest()","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/fetchRequest()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/fetchrequest()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/init(entity:insertinto:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/init(entity:insertinto:).json deleted file mode 100644 index 5ad76b58..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/init(entity:insertinto:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":" "},{"kind":"internalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo\/init(entity:insertinto:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/init(entity:insertInto:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"title":"init(entity:insertInto:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@DataCapturing@objc(cs)GeoLocationMO(im)initWithEntity:insertIntoManagedObjectContext:","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/init(entity:insertInto:)":{"role":"symbol","title":"init(entity:insertInto:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/init(entity:insertInto:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/init(entity:insertinto:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/ispartofcleanedtrack.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/ispartofcleanedtrack.json deleted file mode 100644 index 497fea06..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/ispartofcleanedtrack.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPartOfCleanedTrack"},{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo\/ispartofcleanedtrack"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/isPartOfCleanedTrack","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"isPartOfCleanedTrack","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPartOfCleanedTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)GeoLocationMO(py)isPartOfCleanedTrack","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/isPartOfCleanedTrack":{"role":"symbol","title":"isPartOfCleanedTrack","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPartOfCleanedTrack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/isPartOfCleanedTrack","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/ispartofcleanedtrack"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/lat.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/lat.json deleted file mode 100644 index b4527e54..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/lat.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo\/lat"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/lat","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"lat","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)GeoLocationMO(py)lat","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/lat":{"role":"symbol","title":"lat","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lat"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/lat","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/lat"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/lon.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/lon.json deleted file mode 100644 index 0cc8a625..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/lon.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo\/lon"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/lon","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"lon","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)GeoLocationMO(py)lon","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/lon":{"role":"symbol","title":"lon","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lon"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/lon","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/lon"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/speed.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/speed.json deleted file mode 100644 index e8ecf03a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/speed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo\/speed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/speed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"speed","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)GeoLocationMO(py)speed","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/speed":{"role":"symbol","title":"speed","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/speed","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/speed"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/timestamp.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/timestamp.json deleted file mode 100644 index 1b061c56..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/timestamp.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo\/timestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/timestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"timestamp","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)GeoLocationMO(py)timestamp","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/timestamp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/track.json b/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/track.json deleted file mode 100644 index 05784cc6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/geolocationmo/track.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO","text":"TrackMO"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/geolocationmo\/track"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/track","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"track","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)GeoLocationMO(py)track","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO/track":{"role":"symbol","title":"track","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"track"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO\/track","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/geolocationmo\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata.json b/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata.json deleted file mode 100644 index 4adb5f27..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/inconsistentdata"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP","doc:\/\/org.cocoapods.DataCapturing\/SH","doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"title":"InconsistentData","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:13DataCapturing012InconsistentA0O","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/locationOrderViolated"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Equatable-Implementations","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Error-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/locationOrderViolated":{"role":"symbol","title":"InconsistentData.locationOrderViolated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationOrderViolated"}],"abstract":[{"type":"text","text":"If locations are not ordered by timestamp ascending."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/locationOrderViolated","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/locationorderviolated"},"doc://org.cocoapods.DataCapturing/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData":{"role":"symbol","title":"InconsistentData","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}],"url":"\/documentation\/datacapturing\/inconsistentdata"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/error-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/!=(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/!=(_:_:).json deleted file mode 100644 index 0584dea0..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/inconsistentdata\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/!=(_:_:)","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:13DataCapturing012InconsistentA0O","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Equatable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData":{"role":"symbol","title":"InconsistentData","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}],"url":"\/documentation\/datacapturing\/inconsistentdata"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/!=(_:_:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/asaferror(orfailwith:file:line:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/asaferror(orfailwith:file:line:).json deleted file mode 100644 index 3239298d..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/asaferror(orfailwith:file:line:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":" "},{"kind":"internalParam","text":"message"},{"kind":"text","text":": "},{"kind":"attribute","text":"@autoclosure "},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#file"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#line"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/inconsistentdata\/asaferror(orfailwith:file:line:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/asAFError(orFailWith:file:line:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"symbolKind":"method","externalID":"s:s5ErrorP9AlamofireE9asAFError10orFailWith4file4lineAC0D0OSSyXK_s12StaticStringVSutF::SYNTHESIZED::s:13DataCapturing012InconsistentA0O","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData":{"role":"symbol","title":"InconsistentData","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}],"url":"\/documentation\/datacapturing\/inconsistentdata"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/asaferror(orfailwith:file:line:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/asaferror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/asaferror.json deleted file mode 100644 index 447babf7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/asaferror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/inconsistentdata\/asaferror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/asAFError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp::SYNTHESIZED::s:13DataCapturing012InconsistentA0O","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData":{"role":"symbol","title":"InconsistentData","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}],"url":"\/documentation\/datacapturing\/inconsistentdata"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/asaferror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/equatable-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/equatable-implementations.json deleted file mode 100644 index c334db8a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/inconsistentdata\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/!=(_:_:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData":{"role":"symbol","title":"InconsistentData","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}],"url":"\/documentation\/datacapturing\/inconsistentdata"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/error-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/error-implementations.json deleted file mode 100644 index ff80145d..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/inconsistentdata\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Error-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/asAFError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/localizedDescription"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/asAFError(orFailWith:file:line:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/localizeddescription"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/asaferror(orfailwith:file:line:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData":{"role":"symbol","title":"InconsistentData","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}],"url":"\/documentation\/datacapturing\/inconsistentdata"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/localizeddescription.json b/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/localizeddescription.json deleted file mode 100644 index 126a0e94..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/inconsistentdata\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:13DataCapturing012InconsistentA0O","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData":{"role":"symbol","title":"InconsistentData","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}],"url":"\/documentation\/datacapturing\/inconsistentdata"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/localizeddescription"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/error-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/locationorderviolated.json b/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/locationorderviolated.json deleted file mode 100644 index b7ffdbf6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/inconsistentdata/locationorderviolated.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationOrderViolated"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/inconsistentdata\/locationorderviolated"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/locationOrderViolated","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If locations are not ordered by timestamp ascending."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationOrderViolated"}],"title":"InconsistentData.locationOrderViolated","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing012InconsistentA0O21locationOrderViolatedyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData":{"role":"symbol","title":"InconsistentData","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"InconsistentData"}],"abstract":[{"type":"text","text":"An error thrown if some inconsistent data was encountered."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"InconsistentData"}],"url":"\/documentation\/datacapturing\/inconsistentdata"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/InconsistentData/locationOrderViolated":{"role":"symbol","title":"InconsistentData.locationOrderViolated","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"locationOrderViolated"}],"abstract":[{"type":"text","text":"If locations are not ordered by timestamp ascending."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/InconsistentData\/locationOrderViolated","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/inconsistentdata\/locationorderviolated"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry.json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry.json deleted file mode 100644 index e23538e2..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"title":"LocationCacheEntry","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:13DataCapturing18LocationCacheEntryV","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/accuracy","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/description","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/isValid","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/latitude","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/longitude","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/speed","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/timestamp"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/Equatable-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/isValid":{"role":"symbol","title":"isValid","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not this is a valid location in a cleaned track."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/isValid","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/isvalid"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A stringified version of this object. This should mostly be used for pretty printing during debugging."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/description"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/speed":{"role":"symbol","title":"speed","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The speed the device was moving during the measurement in meters per second."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/speed","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/speed"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/latitude":{"role":"symbol","title":"latitude","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The locations latitude coordinate as a value from -90.0 to 90.0 in south and north diretion."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/latitude","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/latitude"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/longitude":{"role":"symbol","title":"longitude","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The locations longitude coordinate as a value from -180.0 to 180.0 in west and east direction."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/longitude","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/longitude"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"abstract":[{"type":"text","text":"The time the measurement happened at."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/timestamp"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/accuracy":{"role":"symbol","title":"accuracy","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The estimated accuracy of the measurement in meters."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/accuracy","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/accuracy"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/!=(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/!=(_:_:).json deleted file mode 100644 index c000f95e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/!=(_:_:)","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:13DataCapturing18LocationCacheEntryV","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/Equatable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/equatable-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/accuracy.json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/accuracy.json deleted file mode 100644 index cc52d445..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/accuracy.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry\/accuracy"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/accuracy","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The estimated accuracy of the measurement in meters."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"accuracy","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing18LocationCacheEntryV8accuracySdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/accuracy":{"role":"symbol","title":"accuracy","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accuracy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The estimated accuracy of the measurement in meters."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/accuracy","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/accuracy"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/description.json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/description.json deleted file mode 100644 index 0cc61236..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/description.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A stringified version of this object. This should mostly be used for pretty printing during debugging."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing18LocationCacheEntryV11descriptionSSvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A stringified version of this object. This should mostly be used for pretty printing during debugging."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/description"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/equatable-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/equatable-implementations.json deleted file mode 100644 index f60c6a2f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/!=(_:_:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/isvalid.json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/isvalid.json deleted file mode 100644 index c7d1618d..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/isvalid.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry\/isvalid"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/isValid","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Whether or not this is a valid location in a cleaned track."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isValid","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing18LocationCacheEntryV7isValidSbvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/isValid":{"role":"symbol","title":"isValid","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Whether or not this is a valid location in a cleaned track."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/isValid","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/isvalid"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/latitude.json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/latitude.json deleted file mode 100644 index 5b9d3f1c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/latitude.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry\/latitude"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/latitude","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The locations latitude coordinate as a value from -90.0 to 90.0 in south and north diretion."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"latitude","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing18LocationCacheEntryV8latitudeSdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/latitude":{"role":"symbol","title":"latitude","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"latitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The locations latitude coordinate as a value from -90.0 to 90.0 in south and north diretion."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/latitude","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/latitude"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/longitude.json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/longitude.json deleted file mode 100644 index 0742ea7b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/longitude.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry\/longitude"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/longitude","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The locations longitude coordinate as a value from -180.0 to 180.0 in west and east direction."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"longitude","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing18LocationCacheEntryV9longitudeSdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/longitude":{"role":"symbol","title":"longitude","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"longitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The locations longitude coordinate as a value from -180.0 to 180.0 in west and east direction."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/longitude","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/longitude"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/speed.json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/speed.json deleted file mode 100644 index 44b32c69..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/speed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry\/speed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/speed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The speed the device was moving during the measurement in meters per second."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"speed","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing18LocationCacheEntryV5speedSdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/speed":{"role":"symbol","title":"speed","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"speed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The speed the device was moving during the measurement in meters per second."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/speed","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/speed"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/timestamp.json b/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/timestamp.json deleted file mode 100644 index f56a8fb2..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/locationcacheentry/timestamp.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/locationcacheentry\/timestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/timestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The time the measurement happened at."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"title":"timestamp","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing18LocationCacheEntryV9timestamp10Foundation4DateVvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"abstract":[{"type":"text","text":"The time the measurement happened at."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/locationcacheentry\/timestamp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/LocationCacheEntry":{"role":"symbol","title":"LocationCacheEntry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"LocationCacheEntry"}],"abstract":[{"type":"text","text":"This struct exists to save time on a new location by just storing it away. It needs to be converted to a GeoLocation prior to persitent storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/LocationCacheEntry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"LocationCacheEntry"}],"url":"\/documentation\/datacapturing\/locationcacheentry"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement.json deleted file mode 100644 index 4bb0885c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Initially this is not going to be saved via CoreData. As soon as you call an appropriate save method on the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":" the object is stored to CoreData and this objects "},{"type":"codeVoice","code":"objectId"},{"type":"text","text":" will receive a value."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"A "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" can be synchronized to a Cyface server via an instance of "},{"type":"codeVoice","code":"Synchronizer"},{"type":"text","text":"."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"title":"Measurement","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing11MeasurementC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"Measurement"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/==(_:_:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/accelerationsCount","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/directionsCount","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/events","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/identifier","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/rotationsCount","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/synchronizable","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/synchronized","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/timestamp","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/trackLength","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/tracks"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/hash(into:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/Equatable-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/==(_:_:)":{"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":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Required by the "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":" protocol to compare two "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" instances."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/==(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/synchronizable":{"role":"symbol","title":"synchronizable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag, marking this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" as either ready for data syncrhonization or not."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/synchronizable","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/synchronizable"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/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":[{"type":"text","text":"Required by the "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" protocol to produce a hash for this object."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/hash(into:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"A device wide unique identifier for this measurement. Usually set by incrementing a counter."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/identifier"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"The UNIX timestamp in milliseconds since the 1st of January 1970, when this measurement was started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/timestamp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/directionsCount":{"role":"symbol","title":"directionsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The number of directions stored by this measurement. This information is required to deserialize the binary format for those values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/directionsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/directionscount"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/measurement\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/tracks":{"role":"symbol","title":"tracks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tracks"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The tracks containing all the data this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" has captured."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/tracks","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/tracks"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/accelerationsCount":{"role":"symbol","title":"accelerationsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The number of accelerations stored by this measurement. This information is required to deserialize the binary format for those values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/accelerationsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/accelerationscount"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/trackLength":{"role":"symbol","title":"trackLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The calculated length of the "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":". See "},{"type":"codeVoice","code":"DistanceCalculationStrategy"},{"type":"text","text":" for further details."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/trackLength","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/tracklength"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/events":{"role":"symbol","title":"events","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"events"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The user events that occurred during this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/events","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/events"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/rotationsCount":{"role":"symbol","title":"rotationsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The number of rotations stored by this measurement. This information is required to deserialize the binary format for those values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/rotationsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/rotationscount"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/synchronized":{"role":"symbol","title":"synchronized","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag, marking this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" as either synchronized or not."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/synchronized","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/synchronized"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/!=(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/!=(_:_:).json deleted file mode 100644 index 1debb4d3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/!=(_:_:)","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:13DataCapturing11MeasurementC","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/Equatable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/measurement\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/!=(_:_:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/==(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/==(_:_:).json deleted file mode 100644 index c0569dc8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/==(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/==(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/==(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Required by the "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":" protocol to compare two "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" instances."}],"kind":"symbol","metadata":{"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":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"==(_:_:)","roleHeading":"Operator","role":"symbol","symbolKind":"op","externalID":"s:13DataCapturing11MeasurementC2eeoiySbAC_ACtFZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/==(_:_:)":{"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":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Required by the "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":" protocol to compare two "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" instances."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/==(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/==(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/accelerationscount.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/accelerationscount.json deleted file mode 100644 index dc33ccbb..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/accelerationscount.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/accelerationscount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/accelerationsCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The number of accelerations stored by this measurement. This information is required to deserialize the binary format for those values."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"accelerationsCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC18accelerationsCounts5Int32Vvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/accelerationsCount":{"role":"symbol","title":"accelerationsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The number of accelerations stored by this measurement. This information is required to deserialize the binary format for those values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/accelerationsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/accelerationscount"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/directionscount.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/directionscount.json deleted file mode 100644 index 1ce0d51e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/directionscount.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/directionscount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/directionsCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The number of directions stored by this measurement. This information is required to deserialize the binary format for those values."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"directionsCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC15directionsCounts5Int32Vvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/directionsCount":{"role":"symbol","title":"directionsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The number of directions stored by this measurement. This information is required to deserialize the binary format for those values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/directionsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/directionscount"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/equatable-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/equatable-implementations.json deleted file mode 100644 index 15390730..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/!=(_:_:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/events.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/events.json deleted file mode 100644 index b9613e80..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/events.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"events"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","preciseIdentifier":"s:13DataCapturing5EventC","text":"Event"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/events"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/events","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The user events that occurred during this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"events"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":"]"}],"title":"events","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC6eventsSayAA5EventCGvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/events":{"role":"symbol","title":"events","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"events"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The user events that occurred during this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/events","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/events"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/hash(into:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/hash(into:).json deleted file mode 100644 index 7ca0713a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/hash(into:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Required by the "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" protocol to produce a hash for this object."}],"kind":"symbol","metadata":{"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":")"}],"title":"hash(into:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing11MeasurementC4hash4intoys6HasherVz_tF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/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":[{"type":"text","text":"Required by the "},{"type":"codeVoice","code":"Hashable"},{"type":"text","text":" protocol to produce a hash for this object."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/hash(into:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/hash(into:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/identifier.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/identifier.json deleted file mode 100644 index 1327e8a3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/identifier.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/identifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/identifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A device wide unique identifier for this measurement. Usually set by incrementing a counter."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"title":"identifier","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC10identifiers5Int64Vvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[{"type":"text","text":"A device wide unique identifier for this measurement. Usually set by incrementing a counter."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/identifier"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/rotationscount.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/rotationscount.json deleted file mode 100644 index 8c1ffbc2..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/rotationscount.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/rotationscount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/rotationsCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The number of rotations stored by this measurement. This information is required to deserialize the binary format for those values."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"title":"rotationsCount","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC14rotationsCounts5Int32Vvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/rotationsCount":{"role":"symbol","title":"rotationsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[{"type":"text","text":"The number of rotations stored by this measurement. This information is required to deserialize the binary format for those values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/rotationsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/rotationscount"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/synchronizable.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/synchronizable.json deleted file mode 100644 index 145a599c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/synchronizable.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/synchronizable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/synchronizable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A flag, marking this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" as either ready for data syncrhonization or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"synchronizable","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC14synchronizableSbvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/synchronizable":{"role":"symbol","title":"synchronizable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag, marking this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" as either ready for data syncrhonization or not."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/synchronizable","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/synchronizable"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/synchronized.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/synchronized.json deleted file mode 100644 index 7ec6a73e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/synchronized.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/synchronized"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/synchronized","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A flag, marking this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" as either synchronized or not."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"synchronized","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC12synchronizedSbvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/synchronized":{"role":"symbol","title":"synchronized","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag, marking this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" as either synchronized or not."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/synchronized","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/synchronized"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/timestamp.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/timestamp.json deleted file mode 100644 index 41da5af3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/timestamp.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/timestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/timestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The UNIX timestamp in milliseconds since the 1st of January 1970, when this measurement was started."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"title":"timestamp","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC9timestamps6UInt64Vvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"}],"abstract":[{"type":"text","text":"The UNIX timestamp in milliseconds since the 1st of January 1970, when this measurement was started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/timestamp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/tracklength.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/tracklength.json deleted file mode 100644 index 4109a703..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/tracklength.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/tracklength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/trackLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The calculated length of the "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":". See "},{"type":"codeVoice","code":"DistanceCalculationStrategy"},{"type":"text","text":" for further details."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"trackLength","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC11trackLengthSdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/trackLength":{"role":"symbol","title":"trackLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"The calculated length of the "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":". See "},{"type":"codeVoice","code":"DistanceCalculationStrategy"},{"type":"text","text":" for further details."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/trackLength","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/tracklength"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/tracks.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/tracks.json deleted file mode 100644 index 65824110..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurement/tracks.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tracks"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","preciseIdentifier":"s:13DataCapturing5TrackC","text":"Track"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurement\/tracks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/tracks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The tracks containing all the data this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" has captured."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tracks"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":"]"}],"title":"tracks","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11MeasurementC6tracksSayAA5TrackCGvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement/tracks":{"role":"symbol","title":"tracks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tracks"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The tracks containing all the data this "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" has captured."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement\/tracks","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurement\/tracks"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementfile.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementfile.json deleted file mode 100644 index ea85d90b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementfile.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementFile"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.3"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementfile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementFile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Struct implementing the "},{"type":"codeVoice","code":"FileSupport"},{"type":"text","text":" protocol to serialize whole measurements to a file in Cyface binary format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementFile"}],"title":"MeasurementFile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:13DataCapturing15MeasurementFileV","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"MeasurementFile"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementFile":{"role":"symbol","title":"MeasurementFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementFile"}],"abstract":[{"type":"text","text":"Struct implementing the "},{"type":"codeVoice","code":"FileSupport"},{"type":"text","text":" protocol to serialize whole measurements to a file in Cyface binary format."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementFile"}],"url":"\/documentation\/datacapturing\/measurementfile"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo.json deleted file mode 100644 index 2f1d56e9..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(MeasurementMO) "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":[],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/7Combine16ObservableObjectP","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSFetchRequestResult","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject","doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP","doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"title":"MeasurementMO","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@DataCapturing@objc(cs)MeasurementMO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/init(entity:insertInto:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/accelerationsCount","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/directionsCount","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/events","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/identifier","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/rotationsCount","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/synchronizable","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/synchronized","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/timestamp","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/trackLength","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/tracks"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToEvents(_:)-2bb3v","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToEvents(_:)-4serf","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToTracks(_:)-1okeo","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToTracks(_:)-89nmd","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoEvents(_:at:)-6fowx","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoEvents(_:at:)-7f6d7","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoTracks(_:at:)-27qpr","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoTracks(_:at:)-8iwnl","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(_:)-4yxtw","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(_:)-547n8","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(at:)-39lyp","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(at:)-3uq36","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(_:)-6qb0u","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(_:)-9omo6","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(at:)-2pkyf","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(at:)-6wczn","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceEvents(at:with:)-625wb","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceEvents(at:with:)-9rsji","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceTracks(at:with:)-3qwz2","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceTracks(at:with:)-8b7mc"]},{"title":"Type Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/fetchRequest()"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/addToTracks(_:)-89nmd":{"role":"symbol","title":"addToTracks(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToTracks(_:)-89nmd","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/addtotracks(_:)-89nmd"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/replaceTracks(at:with:)-3qwz2":{"role":"symbol","title":"replaceTracks(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceTracks(at:with:)-3qwz2","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/replacetracks(at:with:)-3qwz2"},"doc://org.cocoapods.DataCapturing/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromEvents(_:)-4yxtw":{"role":"symbol","title":"removeFromEvents(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(_:)-4yxtw","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromevents(_:)-4yxtw"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/insertIntoTracks(_:at:)-27qpr":{"role":"symbol","title":"insertIntoTracks(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoTracks(_:at:)-27qpr","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/insertintotracks(_:at:)-27qpr"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/events":{"role":"symbol","title":"events","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"events"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/events","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/events"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/addToEvents(_:)-4serf":{"role":"symbol","title":"addToEvents(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToEvents(_:)-4serf","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/addtoevents(_:)-4serf"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromTracks(_:)-6qb0u":{"role":"symbol","title":"removeFromTracks(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(_:)-6qb0u","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromtracks(_:)-6qb0u"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/fetchRequest()":{"role":"symbol","title":"fetchRequest()","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/fetchRequest()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/fetchrequest()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/insertIntoTracks(_:at:)-8iwnl":{"role":"symbol","title":"insertIntoTracks(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoTracks"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoTracks(_:at:)-8iwnl","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/insertintotracks(_:at:)-8iwnl"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/objc(pl)NSFetchRequestResult":{"type":"unresolvable","title":"CoreData.NSFetchRequestResult","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSFetchRequestResult"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/addToEvents(_:)-2bb3v":{"role":"symbol","title":"addToEvents(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToEvents(_:)-2bb3v","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/addtoevents(_:)-2bb3v"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromEvents(at:)-3uq36":{"role":"symbol","title":"removeFromEvents(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(at:)-3uq36","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromevents(at:)-3uq36"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/directionsCount":{"role":"symbol","title":"directionsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/directionsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/directionscount"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/init(entity:insertInto:)":{"role":"symbol","title":"init(entity:insertInto:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/init(entity:insertInto:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/init(entity:insertinto:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/rotationsCount":{"role":"symbol","title":"rotationsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/rotationsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/rotationscount"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromTracks(at:)-6wczn":{"role":"symbol","title":"removeFromTracks(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(at:)-6wczn","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromtracks(at:)-6wczn"},"doc://org.cocoapods.DataCapturing/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromTracks(_:)-9omo6":{"role":"symbol","title":"removeFromTracks(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(_:)-9omo6","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromtracks(_:)-9omo6"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/synchronizable":{"role":"symbol","title":"synchronizable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/synchronizable","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/synchronizable"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/timestamp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromTracks(at:)-2pkyf":{"role":"symbol","title":"removeFromTracks(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(at:)-2pkyf","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromtracks(at:)-2pkyf"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/replaceEvents(at:with:)-9rsji":{"role":"symbol","title":"replaceEvents(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceEvents(at:with:)-9rsji","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/replaceevents(at:with:)-9rsji"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/synchronized":{"role":"symbol","title":"synchronized","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/synchronized","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/synchronized"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/addToTracks(_:)-1okeo":{"role":"symbol","title":"addToTracks(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToTracks(_:)-1okeo","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/addtotracks(_:)-1okeo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/identifier"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/insertIntoEvents(_:at:)-7f6d7":{"role":"symbol","title":"insertIntoEvents(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoEvents(_:at:)-7f6d7","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/insertintoevents(_:at:)-7f6d7"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromEvents(at:)-39lyp":{"role":"symbol","title":"removeFromEvents(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(at:)-39lyp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromevents(at:)-39lyp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/replaceEvents(at:with:)-625wb":{"role":"symbol","title":"replaceEvents(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceEvents(at:with:)-625wb","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/replaceevents(at:with:)-625wb"},"doc://org.cocoapods.DataCapturing/7Combine16ObservableObjectP":{"type":"unresolvable","title":"Combine.ObservableObject","identifier":"doc:\/\/org.cocoapods.DataCapturing\/7Combine16ObservableObjectP"},"doc://org.cocoapods.DataCapturing/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/insertIntoEvents(_:at:)-6fowx":{"role":"symbol","title":"insertIntoEvents(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoEvents"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoEvents(_:at:)-6fowx","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/insertintoevents(_:at:)-6fowx"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromEvents(_:)-547n8":{"role":"symbol","title":"removeFromEvents(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(_:)-547n8","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromevents(_:)-547n8"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/accelerationsCount":{"role":"symbol","title":"accelerationsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/accelerationsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/accelerationscount"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/trackLength":{"role":"symbol","title":"trackLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/trackLength","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/tracklength"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/tracks":{"role":"symbol","title":"tracks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tracks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/tracks","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/tracks"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/replaceTracks(at:with:)-8b7mc":{"role":"symbol","title":"replaceTracks(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceTracks(at:with:)-8b7mc","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/replacetracks(at:with:)-8b7mc"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/accelerationscount.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/accelerationscount.json deleted file mode 100644 index ce118ef2..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/accelerationscount.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/accelerationscount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/accelerationsCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"accelerationsCount","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)accelerationsCount","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/accelerationsCount":{"role":"symbol","title":"accelerationsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/accelerationsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/accelerationscount"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtoevents(_:)-2bb3v.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtoevents(_:)-2bb3v.json deleted file mode 100644 index f55c7fa2..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtoevents(_:)-2bb3v.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(addEventsObject:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO","text":"EventMO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/addtoevents(_:)-2bb3v"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToEvents(_:)-2bb3v","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"addToEvents(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)addEventsObject:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/addToEvents(_:)-2bb3v":{"role":"symbol","title":"addToEvents(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToEvents(_:)-2bb3v","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/addtoevents(_:)-2bb3v"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtoevents(_:)-4serf.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtoevents(_:)-4serf.json deleted file mode 100644 index 5aa4e164..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtoevents(_:)-4serf.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(addEvents:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/addtoevents(_:)-4serf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToEvents(_:)-4serf","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"addToEvents(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)addEvents:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/addToEvents(_:)-4serf":{"role":"symbol","title":"addToEvents(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToEvents(_:)-4serf","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/addtoevents(_:)-4serf"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtotracks(_:)-1okeo.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtotracks(_:)-1okeo.json deleted file mode 100644 index 6d04d289..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtotracks(_:)-1okeo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(addTracksObject:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO","text":"TrackMO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/addtotracks(_:)-1okeo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToTracks(_:)-1okeo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"addToTracks(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)addTracksObject:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/addToTracks(_:)-1okeo":{"role":"symbol","title":"addToTracks(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToTracks(_:)-1okeo","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/addtotracks(_:)-1okeo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtotracks(_:)-89nmd.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtotracks(_:)-89nmd.json deleted file mode 100644 index 325905c4..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/addtotracks(_:)-89nmd.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(addTracks:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/addtotracks(_:)-89nmd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToTracks(_:)-89nmd","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"addToTracks(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)addTracks:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/addToTracks(_:)-89nmd":{"role":"symbol","title":"addToTracks(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/addToTracks(_:)-89nmd","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/addtotracks(_:)-89nmd"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/directionscount.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/directionscount.json deleted file mode 100644 index 9ea25cec..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/directionscount.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/directionscount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/directionsCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"directionsCount","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)directionsCount","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/directionsCount":{"role":"symbol","title":"directionsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/directionsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/directionscount"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/events.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/events.json deleted file mode 100644 index dd32f0d0..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/events.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"events"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/events"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/events","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"events","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"events"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)events","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/events":{"role":"symbol","title":"events","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"events"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/events","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/events"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/fetchrequest().json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/fetchrequest().json deleted file mode 100644 index cd574816..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/fetchrequest().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@nonobjc"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO","text":"MeasurementMO"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/fetchrequest()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/fetchRequest()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"fetchRequest()","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:13DataCapturing13MeasurementMOC12fetchRequestSo07NSFetchF0CyACGyFZ","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/fetchRequest()":{"role":"symbol","title":"fetchRequest()","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/fetchRequest()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/fetchrequest()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/identifier.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/identifier.json deleted file mode 100644 index f28338df..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/identifier.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/identifier"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/identifier","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"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":"Int64","preciseIdentifier":"s:s5Int64V"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)identifier","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/identifier":{"role":"symbol","title":"identifier","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/identifier","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/identifier"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/init(entity:insertinto:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/init(entity:insertinto:).json deleted file mode 100644 index a333f98e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/init(entity:insertinto:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":" "},{"kind":"internalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/init(entity:insertinto:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/init(entity:insertInto:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"title":"init(entity:insertInto:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@DataCapturing@objc(cs)MeasurementMO(im)initWithEntity:insertIntoManagedObjectContext:","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/init(entity:insertInto:)":{"role":"symbol","title":"init(entity:insertInto:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/init(entity:insertInto:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/init(entity:insertinto:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintoevents(_:at:)-6fowx.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintoevents(_:at:)-6fowx.json deleted file mode 100644 index 37737284..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintoevents(_:at:)-6fowx.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(insertEvents:atIndexes:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO","text":"EventMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"indexes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/insertintoevents(_:at:)-6fowx"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoEvents(_:at:)-6fowx","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"insertIntoEvents(_:at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoEvents"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)insertEvents:atIndexes:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/insertIntoEvents(_:at:)-6fowx":{"role":"symbol","title":"insertIntoEvents(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoEvents"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoEvents(_:at:)-6fowx","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/insertintoevents(_:at:)-6fowx"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintoevents(_:at:)-7f6d7.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintoevents(_:at:)-7f6d7.json deleted file mode 100644 index 9a98ae25..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintoevents(_:at:)-7f6d7.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(insertObject:inEventsAtIndex:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO","text":"EventMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"idx"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/insertintoevents(_:at:)-7f6d7"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoEvents(_:at:)-7f6d7","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"insertIntoEvents(_:at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)insertObject:inEventsAtIndex:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/insertIntoEvents(_:at:)-7f6d7":{"role":"symbol","title":"insertIntoEvents(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoEvents(_:at:)-7f6d7","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/insertintoevents(_:at:)-7f6d7"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintotracks(_:at:)-27qpr.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintotracks(_:at:)-27qpr.json deleted file mode 100644 index ffd53dce..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintotracks(_:at:)-27qpr.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(insertObject:inTracksAtIndex:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO","text":"TrackMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"idx"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/insertintotracks(_:at:)-27qpr"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoTracks(_:at:)-27qpr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"insertIntoTracks(_:at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)insertObject:inTracksAtIndex:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/insertIntoTracks(_:at:)-27qpr":{"role":"symbol","title":"insertIntoTracks(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoTracks(_:at:)-27qpr","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/insertintotracks(_:at:)-27qpr"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintotracks(_:at:)-8iwnl.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintotracks(_:at:)-8iwnl.json deleted file mode 100644 index b49ba22f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/insertintotracks(_:at:)-8iwnl.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(insertTracks:atIndexes:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO","text":"TrackMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"indexes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/insertintotracks(_:at:)-8iwnl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoTracks(_:at:)-8iwnl","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"insertIntoTracks(_:at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoTracks"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)insertTracks:atIndexes:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/insertIntoTracks(_:at:)-8iwnl":{"role":"symbol","title":"insertIntoTracks(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoTracks"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/insertIntoTracks(_:at:)-8iwnl","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/insertintotracks(_:at:)-8iwnl"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(_:)-4yxtw.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(_:)-4yxtw.json deleted file mode 100644 index 42dfc91a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(_:)-4yxtw.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeEvents:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/removefromevents(_:)-4yxtw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(_:)-4yxtw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromEvents(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)removeEvents:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromEvents(_:)-4yxtw":{"role":"symbol","title":"removeFromEvents(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(_:)-4yxtw","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromevents(_:)-4yxtw"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(_:)-547n8.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(_:)-547n8.json deleted file mode 100644 index 2a085665..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(_:)-547n8.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeEventsObject:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO","text":"EventMO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/removefromevents(_:)-547n8"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(_:)-547n8","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromEvents(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)removeEventsObject:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromEvents(_:)-547n8":{"role":"symbol","title":"removeFromEvents(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(_:)-547n8","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromevents(_:)-547n8"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(at:)-39lyp.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(at:)-39lyp.json deleted file mode 100644 index 582687a4..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(at:)-39lyp.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeEventsAtIndexes:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"indexes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/removefromevents(at:)-39lyp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(at:)-39lyp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromEvents(at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)removeEventsAtIndexes:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromEvents(at:)-39lyp":{"role":"symbol","title":"removeFromEvents(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(at:)-39lyp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromevents(at:)-39lyp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(at:)-3uq36.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(at:)-3uq36.json deleted file mode 100644 index 7d8aaea7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromevents(at:)-3uq36.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeObjectFromEventsAtIndex:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"idx"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/removefromevents(at:)-3uq36"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(at:)-3uq36","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromEvents(at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)removeObjectFromEventsAtIndex:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromEvents(at:)-3uq36":{"role":"symbol","title":"removeFromEvents(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromEvents(at:)-3uq36","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromevents(at:)-3uq36"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(_:)-6qb0u.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(_:)-6qb0u.json deleted file mode 100644 index 359b88f8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(_:)-6qb0u.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeTracksObject:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO","text":"TrackMO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/removefromtracks(_:)-6qb0u"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(_:)-6qb0u","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromTracks(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)removeTracksObject:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromTracks(_:)-6qb0u":{"role":"symbol","title":"removeFromTracks(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(_:)-6qb0u","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromtracks(_:)-6qb0u"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(_:)-9omo6.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(_:)-9omo6.json deleted file mode 100644 index 979c4a36..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(_:)-9omo6.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeTracks:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/removefromtracks(_:)-9omo6"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(_:)-9omo6","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromTracks(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)removeTracks:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromTracks(_:)-9omo6":{"role":"symbol","title":"removeFromTracks(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(_:)-9omo6","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromtracks(_:)-9omo6"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(at:)-2pkyf.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(at:)-2pkyf.json deleted file mode 100644 index c149314a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(at:)-2pkyf.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeObjectFromTracksAtIndex:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"idx"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/removefromtracks(at:)-2pkyf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(at:)-2pkyf","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromTracks(at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)removeObjectFromTracksAtIndex:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromTracks(at:)-2pkyf":{"role":"symbol","title":"removeFromTracks(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(at:)-2pkyf","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromtracks(at:)-2pkyf"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(at:)-6wczn.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(at:)-6wczn.json deleted file mode 100644 index 26ad6228..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/removefromtracks(at:)-6wczn.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeTracksAtIndexes:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"indexes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/removefromtracks(at:)-6wczn"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(at:)-6wczn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromTracks(at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)removeTracksAtIndexes:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/removeFromTracks(at:)-6wczn":{"role":"symbol","title":"removeFromTracks(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/removeFromTracks(at:)-6wczn","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/removefromtracks(at:)-6wczn"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replaceevents(at:with:)-625wb.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replaceevents(at:with:)-625wb.json deleted file mode 100644 index f2416ac1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replaceevents(at:with:)-625wb.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(replaceEventsAtIndexes:withEvents:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"indexes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO","text":"EventMO"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/replaceevents(at:with:)-625wb"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceEvents(at:with:)-625wb","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"replaceEvents(at:with:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":"])"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)replaceEventsAtIndexes:withEvents:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/replaceEvents(at:with:)-625wb":{"role":"symbol","title":"replaceEvents(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceEvents(at:with:)-625wb","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/replaceevents(at:with:)-625wb"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replaceevents(at:with:)-9rsji.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replaceevents(at:with:)-9rsji.json deleted file mode 100644 index 92fc0881..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replaceevents(at:with:)-9rsji.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(replaceObjectInEventsAtIndex:withObject:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"idx"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO","text":"EventMO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/replaceevents(at:with:)-9rsji"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceEvents(at:with:)-9rsji","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"replaceEvents(at:with:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)replaceObjectInEventsAtIndex:withObject:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/replaceEvents(at:with:)-9rsji":{"role":"symbol","title":"replaceEvents(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)EventMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceEvents(at:with:)-9rsji","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/replaceevents(at:with:)-9rsji"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventMO":{"role":"symbol","title":"EventMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventMO"}],"url":"\/documentation\/datacapturing\/eventmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replacetracks(at:with:)-3qwz2.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replacetracks(at:with:)-3qwz2.json deleted file mode 100644 index ed5bce4f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replacetracks(at:with:)-3qwz2.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(replaceObjectInTracksAtIndex:withObject:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"idx"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO","text":"TrackMO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/replacetracks(at:with:)-3qwz2"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceTracks(at:with:)-3qwz2","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"replaceTracks(at:with:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)replaceObjectInTracksAtIndex:withObject:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/replaceTracks(at:with:)-3qwz2":{"role":"symbol","title":"replaceTracks(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceTracks(at:with:)-3qwz2","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/replacetracks(at:with:)-3qwz2"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replacetracks(at:with:)-8b7mc.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replacetracks(at:with:)-8b7mc.json deleted file mode 100644 index 59d2f5d9..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/replacetracks(at:with:)-8b7mc.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(replaceTracksAtIndexes:withTracks:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"indexes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO","text":"TrackMO"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/replacetracks(at:with:)-8b7mc"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceTracks(at:with:)-8b7mc","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"replaceTracks(at:with:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":"])"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(im)replaceTracksAtIndexes:withTracks:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/replaceTracks(at:with:)-8b7mc":{"role":"symbol","title":"replaceTracks(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/replaceTracks(at:with:)-8b7mc","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/replacetracks(at:with:)-8b7mc"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/rotationscount.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/rotationscount.json deleted file mode 100644 index 3ecc1294..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/rotationscount.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/rotationscount"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/rotationsCount","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"rotationsCount","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)rotationsCount","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/rotationsCount":{"role":"symbol","title":"rotationsCount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationsCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int32","preciseIdentifier":"s:s5Int32V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/rotationsCount","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/rotationscount"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/synchronizable.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/synchronizable.json deleted file mode 100644 index e54cbc1b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/synchronizable.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizable"},{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/synchronizable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/synchronizable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"synchronizable","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)synchronizable","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/synchronizable":{"role":"symbol","title":"synchronizable","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronizable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/synchronizable","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/synchronizable"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/synchronized.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/synchronized.json deleted file mode 100644 index be34a6f8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/synchronized.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronized"},{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/synchronized"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/synchronized","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"synchronized","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)synchronized","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/synchronized":{"role":"symbol","title":"synchronized","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"synchronized"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/synchronized","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/synchronized"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/timestamp.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/timestamp.json deleted file mode 100644 index a07df4f2..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/timestamp.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/timestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/timestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"timestamp","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)timestamp","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/timestamp"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/tracklength.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/tracklength.json deleted file mode 100644 index 32d6d226..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/tracklength.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/tracklength"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/trackLength","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"trackLength","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)trackLength","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/trackLength":{"role":"symbol","title":"trackLength","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackLength"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/trackLength","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/tracklength"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/tracks.json b/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/tracks.json deleted file mode 100644 index b4392ca0..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/measurementmo/tracks.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tracks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/measurementmo\/tracks"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/tracks","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"tracks","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tracks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)MeasurementMO(py)tracks","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO/tracks":{"role":"symbol","title":"tracks","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"tracks"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO\/tracks","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/measurementmo\/tracks"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice.json b/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice.json deleted file mode 100644 index 7386ae5e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovebisDataCapturingService"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"To receive the updates set the "},{"type":"codeVoice","code":"preCapturingLocationDelegate"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"The instance you provide will receive the updates."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"4.2.3"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/movebisdatacapturingservice"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService"],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/objc(pl)CLLocationManagerDelegate","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject","doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP","doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" implementation that provides the ability to capture locations"},{"type":"text","text":" "},{"type":"text","text":"before an actual measurement has been started."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovebisDataCapturingService"}],"title":"MovebisDataCapturingService","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@DataCapturing@objc(cs)MovebisDataCapturingService","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"MovebisDataCapturingService"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/preCapturingLocationDelegate"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/start()"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)":{"role":"symbol","title":"init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sensorManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMMotionManager","preciseIdentifier":"c:objc(cs)CMMotionManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accelerometerInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"gyroInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"directionsInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"savingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"dataManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eventHandler"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:13DataCapturing6StatusO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"))"}],"abstract":[{"type":"text","text":"Creates a new completely initialized "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" accessing data a certain amount of times per second."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/movebisdatacapturingservice\/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:)"},"doc://org.cocoapods.DataCapturing/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService":{"role":"symbol","title":"MovebisDataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovebisDataCapturingService"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" implementation that provides the ability to capture locations"},{"type":"text","text":" "},{"type":"text","text":"before an actual measurement has been started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovebisDataCapturingService"}],"url":"\/documentation\/datacapturing\/movebisdatacapturingservice"},"doc://org.cocoapods.DataCapturing/objc(pl)CLLocationManagerDelegate":{"type":"unresolvable","title":"CoreLocation.CLLocationManagerDelegate","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)CLLocationManagerDelegate"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService/start()":{"role":"symbol","title":"start()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"start"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Starts the capturing process, notifying the "},{"type":"codeVoice","code":"eventHandler"},{"type":"text","text":", provided to the constructor of important events."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/start()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/movebisdatacapturingservice\/start()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingService":{"role":"symbol","title":"DataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingService"}],"abstract":[{"type":"text","text":"An object of this class handles the lifecycle of starting and stopping data capturing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingService"}],"url":"\/documentation\/datacapturing\/datacapturingservice"},"doc://org.cocoapods.DataCapturing/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService/preCapturingLocationDelegate":{"role":"symbol","title":"preCapturingLocationDelegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preCapturingLocationDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocationManagerDelegate","preciseIdentifier":"c:objc(pl)CLLocationManagerDelegate"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that gets informed about location updates."},{"type":"text","text":" "},{"type":"text","text":"You may set this to "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" if you would like to deactive location updates."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/preCapturingLocationDelegate","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/movebisdatacapturingservice\/precapturinglocationdelegate"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:).json deleted file mode 100644 index 62481b8a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sensorManager"},{"kind":"text","text":" "},{"kind":"internalParam","text":"manager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMMotionManager","preciseIdentifier":"c:objc(cs)CMMotionManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accelerometerInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" = super, "},{"kind":"externalParam","text":"gyroInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" = super, "},{"kind":"externalParam","text":"directionsInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":" = super, "},{"kind":"externalParam","text":"savingInterval"},{"kind":"text","text":" "},{"kind":"internalParam","text":"time"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":" = super, "},{"kind":"externalParam","text":"dataManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC","text":"CoreDataManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eventHandler"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" (("},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO","text":"DataCapturingEvent"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","preciseIdentifier":"s:13DataCapturing6StatusO","text":"Status"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"))"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"sensorManager","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An instance of "},{"type":"codeVoice","code":"CMMotionManager"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"There should be only one instance of this type in your application."},{"type":"text","text":" "},{"type":"text","text":"Since it seems to be impossible to create that instance inside a framework at the moment, you have to provide it via this parameter."}]}]},{"name":"accelerometerInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The accelerometer update interval in Hertz. By default this is set to the supported maximum of 100 Hz."}]}]},{"name":"gyroInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The gyroscope update interval in Hertz. By default this is set to the supported maximum of 100 Hz."}]}]},{"name":"directionsInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The magnetometer update interval in Hertz. By default this is set to the supported maximum of 100 Hz."}]}]},{"name":"savingInterval","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The interval in seconds to wait between saving data to the database. A higher number increses speed but requires more memory and leads to a bigger risk of data loss. A lower number incurs higher demands on the systems processing speed."}]}]},{"name":"dataManager","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"CoreData"},{"type":"text","text":" stack used to store, retrieve and update captured data to the local system until the App can transmit it to a server."}]}]},{"name":"eventHandler","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An optional handler used by the capturing process to inform about "},{"type":"codeVoice","code":"DataCapturingEvent"},{"type":"text","text":"s."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/movebisdatacapturingservice\/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new completely initialized "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" accessing data a certain amount of times per second."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sensorManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMMotionManager","preciseIdentifier":"c:objc(cs)CMMotionManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accelerometerInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"gyroInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"directionsInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"savingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"dataManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eventHandler"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:13DataCapturing6StatusO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"))"}],"title":"init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing07MovebisaB7ServiceC13sensorManager21accelerometerInterval04gyroH0010directionsH006savingH004dataF012eventHandlerACSo08CMMotionF0C_S4dAA04CoreaF0CyAA0aB5EventO_AA6StatusOtctcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)":{"role":"symbol","title":"init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sensorManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CMMotionManager","preciseIdentifier":"c:objc(cs)CMMotionManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"accelerometerInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"gyroInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"directionsInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"savingInterval"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"TimeInterval","preciseIdentifier":"c:@T@NSTimeInterval"},{"kind":"text","text":", "},{"kind":"externalParam","text":"dataManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eventHandler"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","text":"DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:13DataCapturing6StatusO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":"))"}],"abstract":[{"type":"text","text":"Creates a new completely initialized "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" accessing data a certain amount of times per second."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/init(sensorManager:accelerometerInterval:gyroInterval:directionsInterval:savingInterval:dataManager:eventHandler:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/movebisdatacapturingservice\/init(sensormanager:accelerometerinterval:gyrointerval:directionsinterval:savinginterval:datamanager:eventhandler:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager":{"role":"symbol","title":"CoreDataManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}],"url":"\/documentation\/datacapturing\/coredatamanager"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService":{"role":"symbol","title":"MovebisDataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovebisDataCapturingService"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" implementation that provides the ability to capture locations"},{"type":"text","text":" "},{"type":"text","text":"before an actual measurement has been started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovebisDataCapturingService"}],"url":"\/documentation\/datacapturing\/movebisdatacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status":{"deprecated":true,"role":"symbol","title":"Status","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[{"type":"text","text":"The status returned by asynchronous callback handlers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/datacapturing\/status"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice/precapturinglocationdelegate.json b/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice/precapturinglocationdelegate.json deleted file mode 100644 index 232cc73c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice/precapturinglocationdelegate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preCapturingLocationDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocationManagerDelegate","preciseIdentifier":"c:objc(pl)CLLocationManagerDelegate"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/movebisdatacapturingservice\/precapturinglocationdelegate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/preCapturingLocationDelegate","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The delegate that gets informed about location updates."},{"type":"text","text":" "},{"type":"text","text":"You may set this to "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" if you would like to deactive location updates."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preCapturingLocationDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocationManagerDelegate","preciseIdentifier":"c:objc(pl)CLLocationManagerDelegate"},{"kind":"text","text":"?"}],"title":"preCapturingLocationDelegate","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing07MovebisaB7ServiceC03preB16LocationDelegateSo017CLLocationManagerG0_pSgvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService":{"role":"symbol","title":"MovebisDataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovebisDataCapturingService"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" implementation that provides the ability to capture locations"},{"type":"text","text":" "},{"type":"text","text":"before an actual measurement has been started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovebisDataCapturingService"}],"url":"\/documentation\/datacapturing\/movebisdatacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService/preCapturingLocationDelegate":{"role":"symbol","title":"preCapturingLocationDelegate","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"preCapturingLocationDelegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocationManagerDelegate","preciseIdentifier":"c:objc(pl)CLLocationManagerDelegate"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The delegate that gets informed about location updates."},{"type":"text","text":" "},{"type":"text","text":"You may set this to "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" if you would like to deactive location updates."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/preCapturingLocationDelegate","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/movebisdatacapturingservice\/precapturinglocationdelegate"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice/start().json b/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice/start().json deleted file mode 100644 index 20031520..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/movebisdatacapturingservice/start().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"start"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"eventHandler"},{"type":"text","text":", that you did provide as a parameter to this objects constructor, is notified of the completion of the start up process by receiving the event "},{"type":"codeVoice","code":"DataCapturingEvent.serviceStarted"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"If you need to run code and be sure that the service has started you need to listen and wait for that event to occur."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/movebisdatacapturingservice\/start()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/start()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Starts the capturing process, notifying the "},{"type":"codeVoice","code":"eventHandler"},{"type":"text","text":", provided to the constructor of important events."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"start"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"title":"start()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing07MovebisaB7ServiceC5startyyKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService/start()":{"role":"symbol","title":"start()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"start"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Starts the capturing process, notifying the "},{"type":"codeVoice","code":"eventHandler"},{"type":"text","text":", provided to the constructor of important events."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService\/start()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/movebisdatacapturingservice\/start()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MovebisDataCapturingService":{"role":"symbol","title":"MovebisDataCapturingService","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MovebisDataCapturingService"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" implementation that provides the ability to capture locations"},{"type":"text","text":" "},{"type":"text","text":"before an actual measurement has been started."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MovebisDataCapturingService","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MovebisDataCapturingService"}],"url":"\/documentation\/datacapturing\/movebisdatacapturingservice"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror.json deleted file mode 100644 index b4a697c2..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"3.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.3.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/10Foundation14LocalizedErrorP","doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP","doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"title":"PersistenceError","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:13DataCapturing16PersistenceErrorO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/dataNotLoadable(measurement:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/inconsistentState","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/measurementNotLoadable(_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/measurementsNotLoadable","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/nonPersistentTrackEncountered(_:_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/trackNotLoadable(_:_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/unsynchronizedMeasurement(identifier:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/Error-Implementations","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/trackNotLoadable(_:_:)":{"role":"symbol","title":"PersistenceError.trackNotLoadable(_:_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackNotLoadable"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If a track from a measurement could not be loaded"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/trackNotLoadable(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/tracknotloadable(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/dataNotLoadable(measurement:)":{"role":"symbol","title":"PersistenceError.dataNotLoadable(measurement:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataNotLoadable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If some data belonging to a measurement could not be loaded."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/dataNotLoadable(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/datanotloadable(measurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/inconsistentState":{"role":"symbol","title":"PersistenceError.inconsistentState","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inconsistentState"}],"abstract":[{"type":"text","text":"If it is impossible to load the last generated identifier. This can only happen if the system settings have been tempered with."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/inconsistentState","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/inconsistentstate"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/unsynchronizedMeasurement(identifier:)":{"role":"symbol","title":"PersistenceError.unsynchronizedMeasurement(identifier:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unsynchronizedMeasurement"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"On trying to load a not yet synchronized "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":". This is usually a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" with en "},{"type":"codeVoice","code":"objectId"},{"type":"text","text":" of "},{"type":"codeVoice","code":"nil"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/unsynchronizedMeasurement(identifier:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/unsynchronizedmeasurement(identifier:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/measurementsNotLoadable":{"role":"symbol","title":"PersistenceError.measurementsNotLoadable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementsNotLoadable"}],"abstract":[{"type":"text","text":"If measurements could not be loaded in bulk."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/measurementsNotLoadable","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/measurementsnotloadable"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/measurementNotLoadable(_:)":{"role":"symbol","title":"PersistenceError.measurementNotLoadable(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementNotLoadable"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If a measurement was not loaded successfully."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/measurementNotLoadable(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/measurementnotloadable(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/10Foundation14LocalizedErrorP":{"type":"unresolvable","title":"Foundation.LocalizedError","identifier":"doc:\/\/org.cocoapods.DataCapturing\/10Foundation14LocalizedErrorP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/nonPersistentTrackEncountered(_:_:)":{"role":"symbol","title":"PersistenceError.nonPersistentTrackEncountered(_:_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nonPersistentTrackEncountered"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If a track was not persistent (i.e. had not valid objectId) at a place where only persistent tracks are valid"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/nonPersistentTrackEncountered(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/nonpersistenttrackencountered(_:_:)"},"doc://org.cocoapods.DataCapturing/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/LocalizedError-Implementations":{"role":"collectionGroup","title":"LocalizedError Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/localizederror-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/asaferror(orfailwith:file:line:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/asaferror(orfailwith:file:line:).json deleted file mode 100644 index f55afc0b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/asaferror(orfailwith:file:line:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":" "},{"kind":"internalParam","text":"message"},{"kind":"text","text":": "},{"kind":"attribute","text":"@autoclosure "},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#file"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#line"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/asaferror(orfailwith:file:line:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/asAFError(orFailWith:file:line:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"symbolKind":"method","externalID":"s:s5ErrorP9AlamofireE9asAFError10orFailWith4file4lineAC0D0OSSyXK_s12StaticStringVSutF::SYNTHESIZED::s:13DataCapturing16PersistenceErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/asaferror(orfailwith:file:line:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/error-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/asaferror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/asaferror.json deleted file mode 100644 index cdf69427..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/asaferror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/asaferror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/asAFError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp::SYNTHESIZED::s:13DataCapturing16PersistenceErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/datanotloadable(measurement:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/datanotloadable(measurement:).json deleted file mode 100644 index 88d0e07a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/datanotloadable(measurement:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataNotLoadable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/datanotloadable(measurement:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/dataNotLoadable(measurement:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If some data belonging to a measurement could not be loaded."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataNotLoadable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"title":"PersistenceError.dataNotLoadable(measurement:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing16PersistenceErrorO15dataNotLoadableyACs5Int64V_tcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/dataNotLoadable(measurement:)":{"role":"symbol","title":"PersistenceError.dataNotLoadable(measurement:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataNotLoadable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If some data belonging to a measurement could not be loaded."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/dataNotLoadable(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/datanotloadable(measurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/error-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/error-implementations.json deleted file mode 100644 index 0053882f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/Error-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/asAFError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/localizedDescription"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/asAFError(orFailWith:file:line:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/localizeddescription"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/asaferror(orfailwith:file:line:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/errordescription-79jsj.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/errordescription-79jsj.json deleted file mode 100644 index fb69e2a7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/errordescription-79jsj.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/errordescription-79jsj"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/errorDescription-79jsj","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"LocalizedError.errorDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"errorDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:13DataCapturing16PersistenceErrorO16errorDescriptionSSSgvp","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/errorDescription-79jsj":{"role":"symbol","title":"errorDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/errorDescription-79jsj","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/errordescription-79jsj"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/LocalizedError-Implementations":{"role":"collectionGroup","title":"LocalizedError Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/localizederror-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/errordescription-8o79r.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/errordescription-8o79r.json deleted file mode 100644 index 23d95089..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/errordescription-8o79r.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/errordescription-8o79r"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/errorDescription-8o79r","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"LocalizedError.errorDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"errorDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:10Foundation14LocalizedErrorPAAE16errorDescriptionSSSgvp::SYNTHESIZED::s:13DataCapturing16PersistenceErrorO","extendedModule":"Foundation","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/LocalizedError-Implementations":{"role":"collectionGroup","title":"LocalizedError Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/localizederror-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/errorDescription-8o79r":{"role":"symbol","title":"errorDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/errorDescription-8o79r","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/errordescription-8o79r"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/failurereason.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/failurereason.json deleted file mode 100644 index 6d2a43dd..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/failurereason.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"failureReason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/failurereason"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/failureReason","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"LocalizedError.failureReason"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"failureReason","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"failureReason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:10Foundation14LocalizedErrorPAAE13failureReasonSSSgvp::SYNTHESIZED::s:13DataCapturing16PersistenceErrorO","extendedModule":"Foundation","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/failureReason":{"role":"symbol","title":"failureReason","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"failureReason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/failureReason","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/failurereason"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/LocalizedError-Implementations":{"role":"collectionGroup","title":"LocalizedError Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/localizederror-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/helpanchor.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/helpanchor.json deleted file mode 100644 index d8ad720a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/helpanchor.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"helpAnchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/helpanchor"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/helpAnchor","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"LocalizedError.helpAnchor"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"helpAnchor","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"helpAnchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:10Foundation14LocalizedErrorPAAE10helpAnchorSSSgvp::SYNTHESIZED::s:13DataCapturing16PersistenceErrorO","extendedModule":"Foundation","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/LocalizedError-Implementations":{"role":"collectionGroup","title":"LocalizedError Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/localizederror-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/helpAnchor":{"role":"symbol","title":"helpAnchor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"helpAnchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/helpAnchor","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/helpanchor"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/inconsistentstate.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/inconsistentstate.json deleted file mode 100644 index 52a8766f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/inconsistentstate.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inconsistentState"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/inconsistentstate"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/inconsistentState","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If it is impossible to load the last generated identifier. This can only happen if the system settings have been tempered with."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inconsistentState"}],"title":"PersistenceError.inconsistentState","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing16PersistenceErrorO17inconsistentStateyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/inconsistentState":{"role":"symbol","title":"PersistenceError.inconsistentState","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"inconsistentState"}],"abstract":[{"type":"text","text":"If it is impossible to load the last generated identifier. This can only happen if the system settings have been tempered with."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/inconsistentState","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/inconsistentstate"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/localizeddescription.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/localizeddescription.json deleted file mode 100644 index 70907568..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:13DataCapturing16PersistenceErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/localizeddescription"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/localizederror-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/localizederror-implementations.json deleted file mode 100644 index 89e2d4f5..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/localizederror-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/localizederror-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"LocalizedError Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/errorDescription-79jsj","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/errorDescription-8o79r","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/failureReason","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/helpAnchor","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/recoverySuggestion"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/helpAnchor":{"role":"symbol","title":"helpAnchor","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"helpAnchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/helpAnchor","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/helpanchor"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/errorDescription-79jsj":{"role":"symbol","title":"errorDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/errorDescription-79jsj","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/errordescription-79jsj"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/failureReason":{"role":"symbol","title":"failureReason","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"failureReason"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/failureReason","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/failurereason"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/recoverySuggestion":{"role":"symbol","title":"recoverySuggestion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recoverySuggestion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/recoverySuggestion","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/recoverysuggestion"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/errorDescription-8o79r":{"role":"symbol","title":"errorDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"errorDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/errorDescription-8o79r","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/errordescription-8o79r"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/measurementnotloadable(_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/measurementnotloadable(_:).json deleted file mode 100644 index b205b3a0..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/measurementnotloadable(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementNotLoadable"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/measurementnotloadable(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/measurementNotLoadable(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If a measurement was not loaded successfully."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementNotLoadable"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"title":"PersistenceError.measurementNotLoadable(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing16PersistenceErrorO22measurementNotLoadableyACs5Int64VcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/measurementNotLoadable(_:)":{"role":"symbol","title":"PersistenceError.measurementNotLoadable(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementNotLoadable"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If a measurement was not loaded successfully."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/measurementNotLoadable(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/measurementnotloadable(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/measurementsnotloadable.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/measurementsnotloadable.json deleted file mode 100644 index d3420090..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/measurementsnotloadable.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementsNotLoadable"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/measurementsnotloadable"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/measurementsNotLoadable","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If measurements could not be loaded in bulk."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementsNotLoadable"}],"title":"PersistenceError.measurementsNotLoadable","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing16PersistenceErrorO23measurementsNotLoadableyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/measurementsNotLoadable":{"role":"symbol","title":"PersistenceError.measurementsNotLoadable","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementsNotLoadable"}],"abstract":[{"type":"text","text":"If measurements could not be loaded in bulk."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/measurementsNotLoadable","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/measurementsnotloadable"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/nonpersistenttrackencountered(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/nonpersistenttrackencountered(_:_:).json deleted file mode 100644 index 39a6444a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/nonpersistenttrackencountered(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nonPersistentTrackEncountered"},{"kind":"text","text":"("},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","preciseIdentifier":"s:13DataCapturing5TrackC","text":"Track"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/nonpersistenttrackencountered(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/nonPersistentTrackEncountered(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If a track was not persistent (i.e. had not valid objectId) at a place where only persistent tracks are valid"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nonPersistentTrackEncountered"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":")"}],"title":"PersistenceError.nonPersistentTrackEncountered(_:_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing16PersistenceErrorO29nonPersistentTrackEncounteredyAcA0G0C_AA11MeasurementCtcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/nonPersistentTrackEncountered(_:_:)":{"role":"symbol","title":"PersistenceError.nonPersistentTrackEncountered(_:_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"nonPersistentTrackEncountered"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If a track was not persistent (i.e. had not valid objectId) at a place where only persistent tracks are valid"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/nonPersistentTrackEncountered(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/nonpersistenttrackencountered(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/recoverysuggestion.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/recoverysuggestion.json deleted file mode 100644 index f49c66ff..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/recoverysuggestion.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recoverySuggestion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/recoverysuggestion"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/recoverySuggestion","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"LocalizedError.recoverySuggestion"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"recoverySuggestion","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recoverySuggestion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:10Foundation14LocalizedErrorPAAE18recoverySuggestionSSSgvp::SYNTHESIZED::s:13DataCapturing16PersistenceErrorO","extendedModule":"Foundation","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/LocalizedError-Implementations":{"role":"collectionGroup","title":"LocalizedError Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/LocalizedError-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/localizederror-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/recoverySuggestion":{"role":"symbol","title":"recoverySuggestion","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"recoverySuggestion"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/recoverySuggestion","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/recoverysuggestion"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/tracknotloadable(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/tracknotloadable(_:_:).json deleted file mode 100644 index fb3d642e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/tracknotloadable(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackNotLoadable"},{"kind":"text","text":"("},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","preciseIdentifier":"s:13DataCapturing5TrackC","text":"Track"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/tracknotloadable(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/trackNotLoadable(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If a track from a measurement could not be loaded"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackNotLoadable"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":")"}],"title":"PersistenceError.trackNotLoadable(_:_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing16PersistenceErrorO16trackNotLoadableyAcA5TrackC_AA11MeasurementCtcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/trackNotLoadable(_:_:)":{"role":"symbol","title":"PersistenceError.trackNotLoadable(_:_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"trackNotLoadable"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If a track from a measurement could not be loaded"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/trackNotLoadable(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/tracknotloadable(_:_:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/unsynchronizedmeasurement(identifier:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/unsynchronizedmeasurement(identifier:).json deleted file mode 100644 index 97fcf1d7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistenceerror/unsynchronizedmeasurement(identifier:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unsynchronizedMeasurement"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistenceerror\/unsynchronizedmeasurement(identifier:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/unsynchronizedMeasurement(identifier:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"On trying to load a not yet synchronized "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":". This is usually a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" with en "},{"type":"codeVoice","code":"objectId"},{"type":"text","text":" of "},{"type":"codeVoice","code":"nil"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unsynchronizedMeasurement"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"title":"PersistenceError.unsynchronizedMeasurement(identifier:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing16PersistenceErrorO25unsynchronizedMeasurementyACs5Int64V_tcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError":{"role":"symbol","title":"PersistenceError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceError"}],"abstract":[{"type":"text","text":"A structure for all the errors thrown by the "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceError"}],"url":"\/documentation\/datacapturing\/persistenceerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceError/unsynchronizedMeasurement(identifier:)":{"role":"symbol","title":"PersistenceError.unsynchronizedMeasurement(identifier:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unsynchronizedMeasurement"},{"kind":"text","text":"("},{"kind":"externalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"On trying to load a not yet synchronized "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":". This is usually a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" with en "},{"type":"codeVoice","code":"objectId"},{"type":"text","text":" of "},{"type":"codeVoice","code":"nil"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceError\/unsynchronizedMeasurement(identifier:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistenceerror\/unsynchronizedmeasurement(identifier:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer.json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer.json deleted file mode 100644 index cbc4ef60..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"6.2.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Since"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Most methods implemented by this class throw internal CoreData errors. This usually indicates something to be seriously wrong with the device executing the method and are almost never recoverable. Errors from the file system are rethrown on reading and writing sensor values. Those are mostly not recoverable as well. Another common error is an inconstent state of the measurement worked on, such as locations with non strongly monotonically increasing timestamps."}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"title":"PersistenceLayer","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing16PersistenceLayerC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/init(onManager:withDistanceCalculator:)"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/countGeoLocations(forMeasurement:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/countMeasurements()","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/createEvent(of:withValue:timestamp:parent:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/delete(event:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/delete(measurement:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/load(measurementIdentifiedBy:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadClean(track:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadEvents(typed:forMeasurement:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadMeasurements()","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadSynchronizableMeasurements()","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/save(measurement:)"]},{"title":"Type Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/collectGeoLocations(from:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/extractIdentifiers(from:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/traverseTracks(ofMeasurement:call:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/createEvent(of:withValue:timestamp:parent:)":{"role":"symbol","title":"createEvent(of:withValue:timestamp:parent:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createEvent"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parent"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"}],"abstract":[{"type":"text","text":"Creates a new "},{"type":"codeVoice","code":"Event"},{"type":"text","text":" at the current time."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/createEvent(of:withValue:timestamp:parent:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/createevent(of:withvalue:timestamp:parent:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/loadMeasurements()":{"role":"symbol","title":"loadMeasurements()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Loads all the measurements from the data storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadMeasurements()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/loadmeasurements()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/init(onManager:withDistanceCalculator:)":{"role":"symbol","title":"init(onManager:withDistanceCalculator:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withDistanceCalculator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DistanceCalculationStrategy","preciseIdentifier":"s:13DataCapturing27DistanceCalculationStrategyP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Public constructor usable by external callers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/init(onManager:withDistanceCalculator:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/init(onmanager:withdistancecalculator:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/countGeoLocations(forMeasurement:)":{"role":"symbol","title":"countGeoLocations(forMeasurement:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"countGeoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"forMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Counts the number of geo locations from a certain measurement."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/countGeoLocations(forMeasurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/countgeolocations(formeasurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/delete(measurement:)":{"role":"symbol","title":"delete(measurement:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Deletes the measurement from the data storag."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/delete(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/delete(measurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/load(measurementIdentifiedBy:)":{"role":"symbol","title":"load(measurementIdentifiedBy:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurementIdentifiedBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"}],"abstract":[{"type":"text","text":"Loads the data belonging to the provided "},{"type":"codeVoice","code":"measurement"},{"type":"text","text":" in the background an calls "},{"type":"codeVoice","code":"onFinishedCall"},{"type":"text","text":" with the data storage representation of that "},{"type":"codeVoice","code":"measurement"},{"type":"text","text":". Using that represenation is not thread safe. Do not use it outside of the handler."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/load(measurementIdentifiedBy:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/load(measurementidentifiedby:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/delete(event:)":{"role":"symbol","title":"delete(event:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Deletes one event from the database."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/delete(event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/delete(event:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/extractIdentifiers(from:)":{"role":"symbol","title":"extractIdentifiers(from:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"extractIdentifiers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Transforms a list of "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" objects to a list containing the identifiers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/extractIdentifiers(from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/extractidentifiers(from:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/loadClean(track:)":{"role":"symbol","title":"loadClean(track:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadClean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"track"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Provides only the valid locations within a cleaned geo location track. This excludes locations occuring because of geo location jitter and pauses."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadClean(track:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/loadclean(track:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/countMeasurements()":{"role":"symbol","title":"countMeasurements()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"countMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Counts the amount of measurements currently stored in the data store."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/countMeasurements()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/countmeasurements()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/loadEvents(typed:forMeasurement:)":{"role":"symbol","title":"loadEvents(typed:forMeasurement:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"forMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Retrieves the list of all events of a certain "},{"type":"codeVoice","code":"EventType"},{"type":"text","text":" belonging to a "},{"type":"codeVoice","code":"MeasurementMO"},{"type":"text","text":" from the database."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadEvents(typed:forMeasurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/loadevents(typed:formeasurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/collectGeoLocations(from:)":{"role":"symbol","title":"collectGeoLocations(from:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectGeoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Collects all geo locations from all tracks of a measurement and merges them to a single array."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/collectGeoLocations(from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/collectgeolocations(from:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/save(measurement:)":{"role":"symbol","title":"save(measurement:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"save"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"}],"abstract":[{"type":"text","text":"Save the provided "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" via CoreData"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/save(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/save(measurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/traverseTracks(ofMeasurement:call:)":{"role":"symbol","title":"traverseTracks(ofMeasurement:call:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"traverseTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ofMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"call"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Traverses all tracks captured as part of a measurement and provides each track and geo location to a callback."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/traverseTracks(ofMeasurement:call:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/traversetracks(ofmeasurement:call:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/loadSynchronizableMeasurements()":{"role":"symbol","title":"loadSynchronizableMeasurements()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadSynchronizableMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Loads only those measurements that have not been synchronized to a Cyface database yet and that are synchronizable at the moment."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadSynchronizableMeasurements()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/loadsynchronizablemeasurements()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/collectgeolocations(from:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/collectgeolocations(from:).json deleted file mode 100644 index 2a595a7b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/collectgeolocations(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectGeoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC","text":"GeoLocation"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"An array containing all the collected geo locations from all tracks of the provided measurement."}]}]},{"kind":"parameters","parameters":[{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The measurement to collect the geo locations from."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/collectgeolocations(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/collectGeoLocations(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Collects all geo locations from all tracks of a measurement and merges them to a single array."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectGeoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":"]"}],"title":"collectGeoLocations(from:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC19collectGeoLocations4fromSayAA0F8LocationCGAA11MeasurementC_tFZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/collectGeoLocations(from:)":{"role":"symbol","title":"collectGeoLocations(from:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"collectGeoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Collects all geo locations from all tracks of a measurement and merges them to a single array."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/collectGeoLocations(from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/collectgeolocations(from:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/countgeolocations(formeasurement:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/countgeolocations(formeasurement:).json deleted file mode 100644 index cef26adb..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/countgeolocations(formeasurement:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"countGeoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"forMeasurement"},{"kind":"text","text":" "},{"kind":"internalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The count of locations measured in the measurement"}]}]},{"kind":"parameters","parameters":[{"name":"measurement","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The measurement to count the geo locations for"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/countgeolocations(formeasurement:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/countGeoLocations(forMeasurement:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Counts the number of geo locations from a certain measurement."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"countGeoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"forMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"countGeoLocations(forMeasurement:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC17countGeoLocations14forMeasurementSiAA0I0C_tKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/countGeoLocations(forMeasurement:)":{"role":"symbol","title":"countGeoLocations(forMeasurement:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"countGeoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"forMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Counts the number of geo locations from a certain measurement."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/countGeoLocations(forMeasurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/countgeolocations(formeasurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/countmeasurements().json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/countmeasurements().json deleted file mode 100644 index 8d202bd0..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/countmeasurements().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"countMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The count of measurements currently stored on this device."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/countmeasurements()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/countMeasurements()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Counts the amount of measurements currently stored in the data store."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"countMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"countMeasurements()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC17countMeasurementsSiyKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/countMeasurements()":{"role":"symbol","title":"countMeasurements()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"countMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"abstract":[{"type":"text","text":"Counts the amount of measurements currently stored in the data store."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/countMeasurements()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/countmeasurements()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/createevent(of:withvalue:timestamp:parent:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/createevent(of:withvalue:timestamp:parent:).json deleted file mode 100644 index c8f20b68..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/createevent(of:withvalue:timestamp:parent:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createEvent"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO","text":"EventType"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":" = Date(), "},{"kind":"externalParam","text":"parent"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","preciseIdentifier":"s:13DataCapturing5EventC","text":"Event"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"of","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The type of the logged "},{"type":"codeVoice","code":"Event"},{"type":"text","text":"."}]}]},{"name":"withValue","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An optional value providing further information about the event"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/createevent(of:withvalue:timestamp:parent:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/createEvent(of:withValue:timestamp:parent:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Creates a new "},{"type":"codeVoice","code":"Event"},{"type":"text","text":" at the current time."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createEvent"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parent"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"}],"title":"createEvent(of:withValue:timestamp:parent:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC11createEvent2of9withValue9timestamp6parentAA0F0CAA0F4TypeO_SSSg10Foundation4DateVAA11MeasurementCztKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/createEvent(of:withValue:timestamp:parent:)":{"role":"symbol","title":"createEvent(of:withValue:timestamp:parent:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"createEvent"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withValue"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"parent"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"}],"abstract":[{"type":"text","text":"Creates a new "},{"type":"codeVoice","code":"Event"},{"type":"text","text":" at the current time."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/createEvent(of:withValue:timestamp:parent:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/createevent(of:withvalue:timestamp:parent:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/delete(event:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/delete(event:).json deleted file mode 100644 index 8c28c5f7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/delete(event:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","preciseIdentifier":"s:13DataCapturing5EventC","text":"Event"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"event","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The event to delete"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/delete(event:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/delete(event:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes one event from the database."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"delete(event:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC6delete5eventyAA5EventC_tKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/delete(event:)":{"role":"symbol","title":"delete(event:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"externalParam","text":"event"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Deletes one event from the database."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/delete(event:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/delete(event:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/delete(measurement:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/delete(measurement:).json deleted file mode 100644 index 6ecefda8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/delete(measurement:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"measurement","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The identifier of the measurement to delete from the data storage."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"PersistenceError.measurementNotLoadable"}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/delete(measurement:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/delete(measurement:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Deletes the measurement from the data storag."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"delete(measurement:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC6delete11measurementys5Int64V_tKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/delete(measurement:)":{"role":"symbol","title":"delete(measurement:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"delete"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Deletes the measurement from the data storag."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/delete(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/delete(measurement:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/extractidentifiers(from:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/extractidentifiers(from:).json deleted file mode 100644 index 960ba0b6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/extractidentifiers(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"extractIdentifiers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"measurements"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"A collection containing all the device wide unqiue identifiers of the provided measurements."}]}]},{"kind":"parameters","parameters":[{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The array of "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" instances to extract the identifiers for."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If you want to use a list of "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" objects between different threads you must reload them on a context appropriate for that thread."},{"type":"text","text":" "},{"type":"text","text":"To ease this task, this method can be used to make a collection of measurement identifiers, transfer them to the other thread and reload all the measurements there."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/extractidentifiers(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/extractIdentifiers(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Transforms a list of "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" objects to a list containing the identifiers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"extractIdentifiers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"]"}],"title":"extractIdentifiers(from:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC18extractIdentifiers4fromSays5Int64VGSayAA11MeasurementCG_tFZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/extractIdentifiers(from:)":{"role":"symbol","title":"extractIdentifiers(from:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"extractIdentifiers"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":"]) -> ["},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Transforms a list of "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" objects to a list containing the identifiers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/extractIdentifiers(from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/extractidentifiers(from:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/init(onmanager:withdistancecalculator:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/init(onmanager:withdistancecalculator:).json deleted file mode 100644 index abebc239..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/init(onmanager:withdistancecalculator:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onManager"},{"kind":"text","text":" "},{"kind":"internalParam","text":"manager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC","text":"CoreDataManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withDistanceCalculator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","preciseIdentifier":"s:13DataCapturing27DistanceCalculationStrategyP","text":"DistanceCalculationStrategy"},{"kind":"text","text":" = DefaultDistanceCalculationStrategy())"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"withDistanceCalculator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An algorithm used to calculate the distance between geo locations."}]}]},{"name":"manager","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A manager for the CoreData stack use by this "},{"type":"codeVoice","code":"PersistenceLayer"},{"type":"text","text":"."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/init(onmanager:withdistancecalculator:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/init(onManager:withDistanceCalculator:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Public constructor usable by external callers."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withDistanceCalculator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DistanceCalculationStrategy","preciseIdentifier":"s:13DataCapturing27DistanceCalculationStrategyP"},{"kind":"text","text":")"}],"title":"init(onManager:withDistanceCalculator:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing16PersistenceLayerC9onManager22withDistanceCalculatorAcA04CoreaF0C_AA0H19CalculationStrategy_ptcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager":{"role":"symbol","title":"CoreDataManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}],"url":"\/documentation\/datacapturing\/coredatamanager"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/init(onManager:withDistanceCalculator:)":{"role":"symbol","title":"init(onManager:withDistanceCalculator:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onManager"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"withDistanceCalculator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"DistanceCalculationStrategy","preciseIdentifier":"s:13DataCapturing27DistanceCalculationStrategyP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Public constructor usable by external callers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/init(onManager:withDistanceCalculator:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/init(onmanager:withdistancecalculator:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DistanceCalculationStrategy":{"role":"symbol","title":"DistanceCalculationStrategy","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"DistanceCalculationStrategy"}],"abstract":[{"type":"text","text":"This protocol provides a way to calculate the distance between two geo locations in meters."},{"type":"text","text":" "},{"type":"text","text":"Different implementations are possible."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DistanceCalculationStrategy","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DistanceCalculationStrategy"}],"url":"\/documentation\/datacapturing\/distancecalculationstrategy"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/load(measurementidentifiedby:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/load(measurementidentifiedby:).json deleted file mode 100644 index 8fe03fd8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/load(measurementidentifiedby:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurementIdentifiedBy"},{"kind":"text","text":" "},{"kind":"internalParam","text":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The requested measurement as a model object."}]}]},{"kind":"parameters","parameters":[{"name":"measurementIdentifiedBy","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The device wide unique identifier of the measurement to load."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"PersistenceError.measurementNotLoadable"},{"type":"text","text":", Some unspecified errors from within CoreData."}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/load(measurementidentifiedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/load(measurementIdentifiedBy:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Loads the data belonging to the provided "},{"type":"codeVoice","code":"measurement"},{"type":"text","text":" in the background an calls "},{"type":"codeVoice","code":"onFinishedCall"},{"type":"text","text":" with the data storage representation of that "},{"type":"codeVoice","code":"measurement"},{"type":"text","text":". Using that represenation is not thread safe. Do not use it outside of the handler."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurementIdentifiedBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"}],"title":"load(measurementIdentifiedBy:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC4load23measurementIdentifiedByAA11MeasurementCs5Int64V_tKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/load(measurementIdentifiedBy:)":{"role":"symbol","title":"load(measurementIdentifiedBy:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurementIdentifiedBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"}],"abstract":[{"type":"text","text":"Loads the data belonging to the provided "},{"type":"codeVoice","code":"measurement"},{"type":"text","text":" in the background an calls "},{"type":"codeVoice","code":"onFinishedCall"},{"type":"text","text":" with the data storage representation of that "},{"type":"codeVoice","code":"measurement"},{"type":"text","text":". Using that represenation is not thread safe. Do not use it outside of the handler."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/load(measurementIdentifiedBy:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/load(measurementidentifiedby:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadclean(track:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadclean(track:).json deleted file mode 100644 index c1bb2fc7..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadclean(track:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadClean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"track"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","preciseIdentifier":"s:13DataCapturing5TrackC","text":"Track"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC","text":"GeoLocation"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The cleaned list of geo locations from that track."}]}]},{"kind":"parameters","parameters":[{"name":"track","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The track to load a cleaned track for."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Some unspecified error from within CoreData."}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/loadclean(track:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadClean(track:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Provides only the valid locations within a cleaned geo location track. This excludes locations occuring because of geo location jitter and pauses."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadClean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"track"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":"]"}],"title":"loadClean(track:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC9loadClean5trackSayAA11GeoLocationCGAA5TrackCz_tKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/loadClean(track:)":{"role":"symbol","title":"loadClean(track:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadClean"},{"kind":"text","text":"("},{"kind":"externalParam","text":"track"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Provides only the valid locations within a cleaned geo location track. This excludes locations occuring because of geo location jitter and pauses."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadClean(track:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/loadclean(track:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadevents(typed:formeasurement:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadevents(typed:formeasurement:).json deleted file mode 100644 index 5465a71f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadevents(typed:formeasurement:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typed"},{"kind":"text","text":" "},{"kind":"internalParam","text":"type"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO","text":"EventType"},{"kind":"text","text":", "},{"kind":"externalParam","text":"forMeasurement"},{"kind":"text","text":" "},{"kind":"internalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","preciseIdentifier":"s:13DataCapturing5EventC","text":"Event"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"typed","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"EventType"},{"type":"text","text":" to load the "},{"type":"codeVoice","code":"Event"},{"type":"text","text":" objects for."}]}]},{"name":"forMeasurement","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The "},{"type":"codeVoice","code":"MeasurementMO"},{"type":"text","text":" object the loaded "},{"type":"codeVoice","code":"Event"},{"type":"text","text":" objects belong to."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/loadevents(typed:formeasurement:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadEvents(typed:forMeasurement:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Retrieves the list of all events of a certain "},{"type":"codeVoice","code":"EventType"},{"type":"text","text":" belonging to a "},{"type":"codeVoice","code":"MeasurementMO"},{"type":"text","text":" from the database."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"forMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":"]"}],"title":"loadEvents(typed:forMeasurement:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC10loadEvents5typed14forMeasurementSayAA5EventCGAA0J4TypeO_AA0I0CtKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Event":{"role":"symbol","title":"Event","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Event"}],"abstract":[{"type":"text","text":"A single user initiated event during the capturing of a "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Event","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Event"}],"url":"\/documentation\/datacapturing\/event"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/loadEvents(typed:forMeasurement:)":{"role":"symbol","title":"loadEvents(typed:forMeasurement:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadEvents"},{"kind":"text","text":"("},{"kind":"externalParam","text":"typed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"EventType","preciseIdentifier":"s:13DataCapturing9EventTypeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"forMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Event","preciseIdentifier":"s:13DataCapturing5EventC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Retrieves the list of all events of a certain "},{"type":"codeVoice","code":"EventType"},{"type":"text","text":" belonging to a "},{"type":"codeVoice","code":"MeasurementMO"},{"type":"text","text":" from the database."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadEvents(typed:forMeasurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/loadevents(typed:formeasurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/EventType":{"role":"symbol","title":"EventType","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"EventType"}],"abstract":[{"type":"text","text":"Provides a listing of all the events, that might occur during a data capturing run. These events are saved with a timestamp of their occurrence, to reconstruct them for later use."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/EventType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"EventType"}],"url":"\/documentation\/datacapturing\/eventtype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadmeasurements().json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadmeasurements().json deleted file mode 100644 index 133c308f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadmeasurements().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"An array of all measurements currently stored on this device."}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Some unspecified errors from within CoreData."}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/loadmeasurements()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadMeasurements()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Loads all the measurements from the data storage."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":"]"}],"title":"loadMeasurements()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC16loadMeasurementsSayAA11MeasurementCGyKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/loadMeasurements()":{"role":"symbol","title":"loadMeasurements()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Loads all the measurements from the data storage."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadMeasurements()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/loadmeasurements()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadsynchronizablemeasurements().json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadsynchronizablemeasurements().json deleted file mode 100644 index 75b96fda..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/loadsynchronizablemeasurements().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadSynchronizableMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"An array containing all the not synchronized measurements."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/loadsynchronizablemeasurements()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadSynchronizableMeasurements()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Loads only those measurements that have not been synchronized to a Cyface database yet and that are synchronizable at the moment."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadSynchronizableMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":"]"}],"title":"loadSynchronizableMeasurements()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC30loadSynchronizableMeasurementsSayAA11MeasurementCGyKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/loadSynchronizableMeasurements()":{"role":"symbol","title":"loadSynchronizableMeasurements()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadSynchronizableMeasurements"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Loads only those measurements that have not been synchronized to a Cyface database yet and that are synchronizable at the moment."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/loadSynchronizableMeasurements()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/loadsynchronizablemeasurements()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/save(measurement:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/save(measurement:).json deleted file mode 100644 index 465d193a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/save(measurement:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"save"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/save(measurement:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/save(measurement:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Save the provided "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" via CoreData"}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"save"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"}],"title":"save(measurement:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC4save11measurementAA11MeasurementCAG_tKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/save(measurement:)":{"role":"symbol","title":"save(measurement:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"save"},{"kind":"text","text":"("},{"kind":"externalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"}],"abstract":[{"type":"text","text":"Save the provided "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":" via CoreData"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/save(measurement:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/save(measurement:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/traversetracks(ofmeasurement:call:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/traversetracks(ofmeasurement:call:).json deleted file mode 100644 index 260484e9..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/persistencelayer/traversetracks(ofmeasurement:call:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"traverseTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ofMeasurement"},{"kind":"text","text":" "},{"kind":"internalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":", "},{"kind":"externalParam","text":"call"},{"kind":"text","text":" "},{"kind":"internalParam","text":"closure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","preciseIdentifier":"s:13DataCapturing5TrackC","text":"Track"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC","text":"GeoLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"ofMeasurement","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The measurement to traverse the tracks for"}]}]},{"name":"call","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A callback function receiving the track and geo location pairs."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/persistencelayer\/traversetracks(ofmeasurement:call:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/traverseTracks(ofMeasurement:call:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Traverses all tracks captured as part of a measurement and provides each track and geo location to a callback."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"traverseTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ofMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"call"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"title":"traverseTracks(ofMeasurement:call:)","roleHeading":"Type Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing16PersistenceLayerC14traverseTracks13ofMeasurement4callyAA0H0C_yAA5TrackC_AA11GeoLocationCtXEtFZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer/traverseTracks(ofMeasurement:call:)":{"role":"symbol","title":"traverseTracks(ofMeasurement:call:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"traverseTracks"},{"kind":"text","text":"("},{"kind":"externalParam","text":"ofMeasurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"call"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Track","preciseIdentifier":"s:13DataCapturing5TrackC"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Traverses all tracks captured as part of a measurement and provides each track and geo location to a callback."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer\/traverseTracks(ofMeasurement:call:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/persistencelayer\/traversetracks(ofmeasurement:call:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/PersistenceLayer":{"role":"symbol","title":"PersistenceLayer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"PersistenceLayer"}],"abstract":[{"type":"text","text":"An instance of an object of this class is a wrapper around the CoreData data storage used by the capturing service. It allows CRUD operations on measurements, geo locations and sensor values."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/PersistenceLayer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"PersistenceLayer"}],"url":"\/documentation\/datacapturing\/persistencelayer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue.json deleted file mode 100644 index cce85bd8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Such a measurement happens multiple times per second. The "},{"type":"codeVoice","code":"DataCapturingService"},{"type":"text","text":" stores each of them in one instance of a "},{"type":"codeVoice","code":"SensorValue"},{"type":"text","text":" until they are saved to persistent storage."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"3.1.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Since"},{"type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This was called "},{"type":"codeVoice","code":"Acceleration"},{"type":"text","text":" in previous versions of the SDK."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvalue"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"title":"SensorValue","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing11SensorValueC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"SensorValue"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/init(timestamp:x:y:z:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/description","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/timestamp","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/x","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/y","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/z"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"abstract":[{"type":"text","text":"The time this value was captured at."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/timestamp"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/z":{"role":"symbol","title":"z","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"z"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Value in the device z direction, which is standing on the screen pointing towards you if the homebutton faces you."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/z","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/z"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/x":{"role":"symbol","title":"x","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"x"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Value in the device x direction, which is towards the right side if the homebutton faces you."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/x","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/x"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A human readable description of this object. This is required for debugging purposes."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/description"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/init(timestamp:x:y:z:)":{"role":"symbol","title":"init(timestamp:x:y:z:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"x"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"z"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The default constructor, which initializes all the properties of a "},{"type":"codeVoice","code":"SensorValue"},{"type":"text","text":" instance."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/init(timestamp:x:y:z:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/init(timestamp:x:y:z:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/y":{"role":"symbol","title":"y","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"y"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Value in the device y direction, which is towards the top of the device if the homebutton faces you."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/y","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/y"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue":{"role":"symbol","title":"SensorValue","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValue"}],"url":"\/documentation\/datacapturing\/sensorvalue"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/description.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/description.json deleted file mode 100644 index 4e44e5e1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/description.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvalue\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/description","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A human readable description of this object. This is required for debugging purposes."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"description","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11SensorValueC11descriptionSSvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/description":{"role":"symbol","title":"description","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"A human readable description of this object. This is required for debugging purposes."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/description","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/description"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue":{"role":"symbol","title":"SensorValue","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValue"}],"url":"\/documentation\/datacapturing\/sensorvalue"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/init(timestamp:x:y:z:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/init(timestamp:x:y:z:).json deleted file mode 100644 index 0ee2c48f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/init(timestamp:x:y:z:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"x"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"z"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"timestamp","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The time this value was captured at."}]}]},{"name":"x","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Value in the device x direction, which is towards the right side if the homebutton faces you."}]}]},{"name":"y","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Value in the device y direction, which is towards the top of the device if the homebutton faces you."}]}]},{"name":"z","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"value in the device z direction, which is standing on the screen pointing towards you if the homebutton faces you."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvalue\/init(timestamp:x:y:z:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/init(timestamp:x:y:z:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The default constructor, which initializes all the properties of a "},{"type":"codeVoice","code":"SensorValue"},{"type":"text","text":" instance."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"x"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"z"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"title":"init(timestamp:x:y:z:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing11SensorValueC9timestamp1x1y1zAC10Foundation4DateV_S3dtcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue":{"role":"symbol","title":"SensorValue","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValue"}],"url":"\/documentation\/datacapturing\/sensorvalue"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/init(timestamp:x:y:z:)":{"role":"symbol","title":"init(timestamp:x:y:z:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"x"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":", "},{"kind":"externalParam","text":"z"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The default constructor, which initializes all the properties of a "},{"type":"codeVoice","code":"SensorValue"},{"type":"text","text":" instance."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/init(timestamp:x:y:z:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/init(timestamp:x:y:z:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/timestamp.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/timestamp.json deleted file mode 100644 index f9261371..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/timestamp.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvalue\/timestamp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/timestamp","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The time this value was captured at."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"title":"timestamp","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11SensorValueC9timestamp10Foundation4DateVvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue":{"role":"symbol","title":"SensorValue","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValue"}],"url":"\/documentation\/datacapturing\/sensorvalue"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/timestamp":{"role":"symbol","title":"timestamp","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"timestamp"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Date","preciseIdentifier":"s:10Foundation4DateV"}],"abstract":[{"type":"text","text":"The time this value was captured at."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/timestamp","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/timestamp"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/x.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/x.json deleted file mode 100644 index 766b288c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/x.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"x"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvalue\/x"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/x","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Value in the device x direction, which is towards the right side if the homebutton faces you."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"x"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"x","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11SensorValueC1xSdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/x":{"role":"symbol","title":"x","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"x"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Value in the device x direction, which is towards the right side if the homebutton faces you."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/x","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/x"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue":{"role":"symbol","title":"SensorValue","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValue"}],"url":"\/documentation\/datacapturing\/sensorvalue"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/y.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/y.json deleted file mode 100644 index e6504599..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/y.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"y"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvalue\/y"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/y","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Value in the device y direction, which is towards the top of the device if the homebutton faces you."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"y"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"y","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11SensorValueC1ySdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue":{"role":"symbol","title":"SensorValue","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValue"}],"url":"\/documentation\/datacapturing\/sensorvalue"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/y":{"role":"symbol","title":"y","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"y"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Value in the device y direction, which is towards the top of the device if the homebutton faces you."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/y","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/y"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/z.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/z.json deleted file mode 100644 index 222d7752..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvalue/z.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"z"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvalue\/z"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/z","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Value in the device z direction, which is standing on the screen pointing towards you if the homebutton faces you."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"z"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"title":"z","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing11SensorValueC1zSdvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue":{"role":"symbol","title":"SensorValue","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValue"}],"url":"\/documentation\/datacapturing\/sensorvalue"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue/z":{"role":"symbol","title":"z","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"z"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"}],"abstract":[{"type":"text","text":"Value in the device z direction, which is standing on the screen pointing towards you if the homebutton faces you."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue\/z","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvalue\/z"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefile.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefile.json deleted file mode 100644 index c8b8fdbb..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefile.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFile"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"3.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.0"}]}],"type":"aside","name":"Since"},{"type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This class was called "},{"type":"codeVoice","code":"AccelerationsFile"},{"type":"text","text":" prior to SDK version 6.0.0."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvaluefile"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Struct implementing the "},{"type":"codeVoice","code":"FileSupport"},{"type":"text","text":" protocol to store sensor values to a file in Cyface binary format."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFile"}],"title":"SensorValueFile","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:13DataCapturing15SensorValueFileV","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"SensorValueFile"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile\/init(fileType:)"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile\/load(from:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFile/load(from:)":{"role":"symbol","title":"load(from:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"SensorValue","preciseIdentifier":"s:13DataCapturing11SensorValueC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Loads all sensor values from the provided measurement. This accesses the file system to get the data from the local sensor value storage file."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile\/load(from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefile\/load(from:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFile":{"role":"symbol","title":"SensorValueFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFile"}],"abstract":[{"type":"text","text":"Struct implementing the "},{"type":"codeVoice","code":"FileSupport"},{"type":"text","text":" protocol to store sensor values to a file in Cyface binary format."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFile"}],"url":"\/documentation\/datacapturing\/sensorvaluefile"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFile/init(fileType:)":{"role":"symbol","title":"init(fileType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Public initializer for external systems to access sensor value data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile\/init(fileType:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefile\/init(filetype:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefile/init(filetype:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefile/init(filetype:).json deleted file mode 100644 index 6607eb75..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefile/init(filetype:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC","text":"SensorValueFileType"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvaluefile\/init(filetype:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile\/init(fileType:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Public initializer for external systems to access sensor value data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"},{"kind":"text","text":")"}],"title":"init(fileType:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing15SensorValueFileV8fileTypeAcA0cdeG0C_tcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType":{"role":"symbol","title":"SensorValueFileType","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFileType"}],"abstract":[{"type":"text","text":"One type of a sensor value file, such as a file for accelerations, rotations or directions."},{"type":"text","text":" "},{"type":"text","text":"This class may not be instantiated directly."},{"type":"text","text":" "},{"type":"text","text":"The only valid instances are provided as static properties."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFileType"}],"url":"\/documentation\/datacapturing\/sensorvaluefiletype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFile":{"role":"symbol","title":"SensorValueFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFile"}],"abstract":[{"type":"text","text":"Struct implementing the "},{"type":"codeVoice","code":"FileSupport"},{"type":"text","text":" protocol to store sensor values to a file in Cyface binary format."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFile"}],"url":"\/documentation\/datacapturing\/sensorvaluefile"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFile/init(fileType:)":{"role":"symbol","title":"init(fileType:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"fileType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Public initializer for external systems to access sensor value data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile\/init(fileType:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefile\/init(filetype:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefile/load(from:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefile/load(from:).json deleted file mode 100644 index 0db255be..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefile/load(from:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC","text":"Measurement"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","preciseIdentifier":"s:13DataCapturing11SensorValueC","text":"SensorValue"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"An array of all the sensor values from the provided measurement."}]}]},{"kind":"parameters","parameters":[{"name":"from","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The measurement to load the sensor values from."}]}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If the file containing the sensor values was not readable."}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvaluefile\/load(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile\/load(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Loads all sensor values from the provided measurement. This accesses the file system to get the data from the local sensor value storage file."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"SensorValue","preciseIdentifier":"s:13DataCapturing11SensorValueC"},{"kind":"text","text":"]"}],"title":"load(from:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing15SensorValueFileV4load4fromSayAA0cD0CGAA11MeasurementC_tKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValue":{"role":"symbol","title":"SensorValue","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValue"}],"abstract":[{"type":"text","text":"Represents one captured sensor value, such as an acceleration, rotation or direction measurement carried out by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValue","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValue"}],"url":"\/documentation\/datacapturing\/sensorvalue"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFile":{"role":"symbol","title":"SensorValueFile","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFile"}],"abstract":[{"type":"text","text":"Struct implementing the "},{"type":"codeVoice","code":"FileSupport"},{"type":"text","text":" protocol to store sensor values to a file in Cyface binary format."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFile"}],"url":"\/documentation\/datacapturing\/sensorvaluefile"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Measurement":{"role":"symbol","title":"Measurement","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Measurement"}],"abstract":[{"type":"text","text":"Instances of this class represent a single data capturing session, framed by calls to "},{"type":"codeVoice","code":"DataCapturingService.start"},{"type":"text","text":" and "},{"type":"codeVoice","code":"DataCapturingService.stop"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Measurement","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Measurement"}],"url":"\/documentation\/datacapturing\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFile/load(from:)":{"role":"symbol","title":"load(from:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"load"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Measurement","preciseIdentifier":"s:13DataCapturing11MeasurementC"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"SensorValue","preciseIdentifier":"s:13DataCapturing11SensorValueC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"Loads all sensor values from the provided measurement. This accesses the file system to get the data from the local sensor value storage file."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFile\/load(from:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefile\/load(from:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype.json deleted file mode 100644 index e593cf88..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFileType"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"6.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvaluefiletype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"One type of a sensor value file, such as a file for accelerations, rotations or directions."},{"type":"text","text":" "},{"type":"text","text":"This class may not be instantiated directly."},{"type":"text","text":" "},{"type":"text","text":"The only valid instances are provided as static properties."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFileType"}],"title":"SensorValueFileType","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing19SensorValueFileTypeC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"SensorValueFileType"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/fileExtension"]},{"title":"Type Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/accelerationValueType","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/directionValueType","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/rotationValueType"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType":{"role":"symbol","title":"SensorValueFileType","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFileType"}],"abstract":[{"type":"text","text":"One type of a sensor value file, such as a file for accelerations, rotations or directions."},{"type":"text","text":" "},{"type":"text","text":"This class may not be instantiated directly."},{"type":"text","text":" "},{"type":"text","text":"The only valid instances are provided as static properties."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFileType"}],"url":"\/documentation\/datacapturing\/sensorvaluefiletype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType/fileExtension":{"role":"symbol","title":"fileExtension","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The file extension of the represented file type."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/fileExtension","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefiletype\/fileextension"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType/directionValueType":{"role":"symbol","title":"directionValueType","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"}],"abstract":[{"type":"text","text":"A file type for direction files."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/directionValueType","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefiletype\/directionvaluetype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType/accelerationValueType":{"role":"symbol","title":"accelerationValueType","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"}],"abstract":[{"type":"text","text":"A file type for acceleration files."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/accelerationValueType","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefiletype\/accelerationvaluetype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType/rotationValueType":{"role":"symbol","title":"rotationValueType","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"}],"abstract":[{"type":"text","text":"A file type for rotation files."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/rotationValueType","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefiletype\/rotationvaluetype"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/accelerationvaluetype.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/accelerationvaluetype.json deleted file mode 100644 index f9d120d1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/accelerationvaluetype.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC","text":"SensorValueFileType"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvaluefiletype\/accelerationvaluetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/accelerationValueType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A file type for acceleration files."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"}],"title":"accelerationValueType","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing19SensorValueFileTypeC012accelerationdF0ACvpZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType/accelerationValueType":{"role":"symbol","title":"accelerationValueType","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"accelerationValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"}],"abstract":[{"type":"text","text":"A file type for acceleration files."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/accelerationValueType","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefiletype\/accelerationvaluetype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType":{"role":"symbol","title":"SensorValueFileType","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFileType"}],"abstract":[{"type":"text","text":"One type of a sensor value file, such as a file for accelerations, rotations or directions."},{"type":"text","text":" "},{"type":"text","text":"This class may not be instantiated directly."},{"type":"text","text":" "},{"type":"text","text":"The only valid instances are provided as static properties."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFileType"}],"url":"\/documentation\/datacapturing\/sensorvaluefiletype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/directionvaluetype.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/directionvaluetype.json deleted file mode 100644 index 1e2e4e39..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/directionvaluetype.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC","text":"SensorValueFileType"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvaluefiletype\/directionvaluetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/directionValueType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A file type for direction files."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"}],"title":"directionValueType","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing19SensorValueFileTypeC09directiondF0ACvpZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType":{"role":"symbol","title":"SensorValueFileType","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFileType"}],"abstract":[{"type":"text","text":"One type of a sensor value file, such as a file for accelerations, rotations or directions."},{"type":"text","text":" "},{"type":"text","text":"This class may not be instantiated directly."},{"type":"text","text":" "},{"type":"text","text":"The only valid instances are provided as static properties."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFileType"}],"url":"\/documentation\/datacapturing\/sensorvaluefiletype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType/directionValueType":{"role":"symbol","title":"directionValueType","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"directionValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"}],"abstract":[{"type":"text","text":"A file type for direction files."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/directionValueType","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefiletype\/directionvaluetype"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/fileextension.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/fileextension.json deleted file mode 100644 index f521330c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/fileextension.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvaluefiletype\/fileextension"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/fileExtension","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The file extension of the represented file type."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"title":"fileExtension","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing19SensorValueFileTypeC13fileExtensionSSvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType":{"role":"symbol","title":"SensorValueFileType","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFileType"}],"abstract":[{"type":"text","text":"One type of a sensor value file, such as a file for accelerations, rotations or directions."},{"type":"text","text":" "},{"type":"text","text":"This class may not be instantiated directly."},{"type":"text","text":" "},{"type":"text","text":"The only valid instances are provided as static properties."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFileType"}],"url":"\/documentation\/datacapturing\/sensorvaluefiletype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType/fileExtension":{"role":"symbol","title":"fileExtension","fragments":[{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExtension"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[{"type":"text","text":"The file extension of the represented file type."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/fileExtension","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefiletype\/fileextension"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/rotationvaluetype.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/rotationvaluetype.json deleted file mode 100644 index c5b566cd..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sensorvaluefiletype/rotationvaluetype.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC","text":"SensorValueFileType"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sensorvaluefiletype\/rotationvaluetype"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/rotationValueType","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A file type for rotation files."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"}],"title":"rotationValueType","roleHeading":"Type Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing19SensorValueFileTypeC08rotationdF0ACvpZ","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType":{"role":"symbol","title":"SensorValueFileType","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"SensorValueFileType"}],"abstract":[{"type":"text","text":"One type of a sensor value file, such as a file for accelerations, rotations or directions."},{"type":"text","text":" "},{"type":"text","text":"This class may not be instantiated directly."},{"type":"text","text":" "},{"type":"text","text":"The only valid instances are provided as static properties."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SensorValueFileType"}],"url":"\/documentation\/datacapturing\/sensorvaluefiletype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SensorValueFileType/rotationValueType":{"role":"symbol","title":"rotationValueType","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationValueType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SensorValueFileType","preciseIdentifier":"s:13DataCapturing19SensorValueFileTypeC"}],"abstract":[{"type":"text","text":"A file type for rotation files."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SensorValueFileType\/rotationValueType","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sensorvaluefiletype\/rotationvaluetype"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror.json deleted file mode 100644 index c038ace4..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"5.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP","doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"title":"ServerConnectionError","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:13DataCapturing21ServerConnectionErrorO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/alamofireError(_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/authenticationNotSuccessful(_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/dataError(_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/invalidUploadLocation(_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/measurementError(_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/modalityError(_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/noLocation","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/noResponse","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/notAuthenticated(_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/requestFailed(httpStatusCode:)"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/Error-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/invalidUploadLocation(_:)":{"role":"symbol","title":"ServerConnectionError.invalidUploadLocation(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidUploadLocation"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The upload location provided by a status request was no a valid URL."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/invalidUploadLocation(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/invaliduploadlocation(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/noResponse":{"role":"symbol","title":"ServerConnectionError.noResponse","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noResponse"}],"abstract":[{"type":"text","text":"Server did not send a response and client timed out."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/noResponse","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/noresponse"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/modalityError(_:)":{"role":"symbol","title":"ServerConnectionError.modalityError(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"modalityError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Thrown if modality type changes are inconsistent."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/modalityError(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/modalityerror(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/requestFailed(httpStatusCode:)":{"role":"symbol","title":"ServerConnectionError.requestFailed(httpStatusCode:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"requestFailed"},{"kind":"text","text":"("},{"kind":"externalParam","text":"httpStatusCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The request failed. The failure status code is provided."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/requestFailed(httpStatusCode:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/requestfailed(httpstatuscode:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/noLocation":{"role":"symbol","title":"ServerConnectionError.noLocation","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noLocation"}],"abstract":[{"type":"text","text":"Missing location header in pre request response."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/noLocation","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/nolocation"},"doc://org.cocoapods.DataCapturing/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/measurementError(_:)":{"role":"symbol","title":"ServerConnectionError.measurementError(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Thrown if measurement events are inconsistent."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/measurementError(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/measurementerror(_:)"},"doc://org.cocoapods.DataCapturing/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/authenticationNotSuccessful(_:)":{"role":"symbol","title":"ServerConnectionError.authenticationNotSuccessful(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationNotSuccessful"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If authentication was carried out but was not successful."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/authenticationNotSuccessful(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/authenticationnotsuccessful(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/alamofireError(_:)":{"role":"symbol","title":"ServerConnectionError.alamofireError(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"alamofireError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Rethrow an error from within Alamofire."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/alamofireError(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/alamofireerror(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/notAuthenticated(_:)":{"role":"symbol","title":"ServerConnectionError.notAuthenticated(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notAuthenticated"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Error occuring if this client tried to communicate with the server without proper authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/notAuthenticated(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/notauthenticated(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/dataError(_:)":{"role":"symbol","title":"ServerConnectionError.dataError(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Thrown if some measurement metadata was not encodable as an UTF-8 String."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/dataError(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/dataerror(_:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/alamofireerror(_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/alamofireerror(_:).json deleted file mode 100644 index 02b828fe..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/alamofireerror(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"alamofireError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/alamofireerror(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/alamofireError(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Rethrow an error from within Alamofire."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"alamofireError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":")"}],"title":"ServerConnectionError.alamofireError(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO09alamofireE0yAC9Alamofire7AFErrorOcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/alamofireError(_:)":{"role":"symbol","title":"ServerConnectionError.alamofireError(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"alamofireError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Rethrow an error from within Alamofire."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/alamofireError(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/alamofireerror(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/asaferror(orfailwith:file:line:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/asaferror(orfailwith:file:line:).json deleted file mode 100644 index c45935e3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/asaferror(orfailwith:file:line:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":" "},{"kind":"internalParam","text":"message"},{"kind":"text","text":": "},{"kind":"attribute","text":"@autoclosure "},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#file"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#line"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/asaferror(orfailwith:file:line:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/asAFError(orFailWith:file:line:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"symbolKind":"method","externalID":"s:s5ErrorP9AlamofireE9asAFError10orFailWith4file4lineAC0D0OSSyXK_s12StaticStringVSutF::SYNTHESIZED::s:13DataCapturing21ServerConnectionErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/asaferror(orfailwith:file:line:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/asaferror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/asaferror.json deleted file mode 100644 index 5facedf9..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/asaferror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/asaferror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/asAFError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp::SYNTHESIZED::s:13DataCapturing21ServerConnectionErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/error-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/authenticationnotsuccessful(_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/authenticationnotsuccessful(_:).json deleted file mode 100644 index 881f8962..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/authenticationnotsuccessful(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationNotSuccessful"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/authenticationnotsuccessful(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/authenticationNotSuccessful(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If authentication was carried out but was not successful."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationNotSuccessful"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"ServerConnectionError.authenticationNotSuccessful(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO27authenticationNotSuccessfulyACSScACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/authenticationNotSuccessful(_:)":{"role":"symbol","title":"ServerConnectionError.authenticationNotSuccessful(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticationNotSuccessful"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"If authentication was carried out but was not successful."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/authenticationNotSuccessful(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/authenticationnotsuccessful(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/dataerror(_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/dataerror(_:).json deleted file mode 100644 index c43fc3e4..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/dataerror(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/dataerror(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/dataError(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Thrown if some measurement metadata was not encodable as an UTF-8 String."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"ServerConnectionError.dataError(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO04dataE0yACSScACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/dataError(_:)":{"role":"symbol","title":"ServerConnectionError.dataError(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"dataError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Thrown if some measurement metadata was not encodable as an UTF-8 String."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/dataError(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/dataerror(_:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/error-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/error-implementations.json deleted file mode 100644 index 30db82f8..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/Error-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/asAFError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/localizedDescription"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/asAFError(orFailWith:file:line:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/asaferror(orfailwith:file:line:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/localizeddescription"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/invaliduploadlocation(_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/invaliduploadlocation(_:).json deleted file mode 100644 index c0fc2864..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/invaliduploadlocation(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidUploadLocation"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/invaliduploadlocation(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/invalidUploadLocation(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The upload location provided by a status request was no a valid URL."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidUploadLocation"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"ServerConnectionError.invalidUploadLocation(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO21invalidUploadLocationyACSScACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/invalidUploadLocation(_:)":{"role":"symbol","title":"ServerConnectionError.invalidUploadLocation(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidUploadLocation"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The upload location provided by a status request was no a valid URL."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/invalidUploadLocation(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/invaliduploadlocation(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/localizeddescription.json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/localizeddescription.json deleted file mode 100644 index 3f4b1f1a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:13DataCapturing21ServerConnectionErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/localizeddescription"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/measurementerror(_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/measurementerror(_:).json deleted file mode 100644 index 6d172963..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/measurementerror(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/measurementerror(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/measurementError(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Thrown if measurement events are inconsistent."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"title":"ServerConnectionError.measurementError(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO011measurementE0yACs5Int64VcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/measurementError(_:)":{"role":"symbol","title":"ServerConnectionError.measurementError(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurementError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Thrown if measurement events are inconsistent."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/measurementError(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/measurementerror(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/modalityerror(_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/modalityerror(_:).json deleted file mode 100644 index 9f36eec1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/modalityerror(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"modalityError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/modalityerror(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/modalityError(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Thrown if modality type changes are inconsistent."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"modalityError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"ServerConnectionError.modalityError(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO08modalityE0yACSScACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/modalityError(_:)":{"role":"symbol","title":"ServerConnectionError.modalityError(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"modalityError"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Thrown if modality type changes are inconsistent."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/modalityError(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/modalityerror(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/nolocation.json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/nolocation.json deleted file mode 100644 index 29480b89..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/nolocation.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noLocation"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/nolocation"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/noLocation","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Missing location header in pre request response."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noLocation"}],"title":"ServerConnectionError.noLocation","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO10noLocationyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/noLocation":{"role":"symbol","title":"ServerConnectionError.noLocation","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noLocation"}],"abstract":[{"type":"text","text":"Missing location header in pre request response."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/noLocation","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/nolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/noresponse.json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/noresponse.json deleted file mode 100644 index 9a8186b1..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/noresponse.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noResponse"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/noresponse"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/noResponse","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Server did not send a response and client timed out."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noResponse"}],"title":"ServerConnectionError.noResponse","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO10noResponseyA2CmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/noResponse":{"role":"symbol","title":"ServerConnectionError.noResponse","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"noResponse"}],"abstract":[{"type":"text","text":"Server did not send a response and client timed out."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/noResponse","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/noresponse"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/notauthenticated(_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/notauthenticated(_:).json deleted file mode 100644 index 473c159a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/notauthenticated(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notAuthenticated"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/notauthenticated(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/notAuthenticated(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Error occuring if this client tried to communicate with the server without proper authentication."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notAuthenticated"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"ServerConnectionError.notAuthenticated(_:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO16notAuthenticatedyACSScACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/notAuthenticated(_:)":{"role":"symbol","title":"ServerConnectionError.notAuthenticated(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"notAuthenticated"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Error occuring if this client tried to communicate with the server without proper authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/notAuthenticated(_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/notauthenticated(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/requestfailed(httpstatuscode:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/requestfailed(httpstatuscode:).json deleted file mode 100644 index 209b238c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/serverconnectionerror/requestfailed(httpstatuscode:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"requestFailed"},{"kind":"text","text":"("},{"kind":"externalParam","text":"httpStatusCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/serverconnectionerror\/requestfailed(httpstatuscode:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/requestFailed(httpStatusCode:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The request failed. The failure status code is provided."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"requestFailed"},{"kind":"text","text":"("},{"kind":"externalParam","text":"httpStatusCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"title":"ServerConnectionError.requestFailed(httpStatusCode:)","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing21ServerConnectionErrorO13requestFailedyACSi_tcACmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError":{"role":"symbol","title":"ServerConnectionError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"ServerConnectionError"}],"abstract":[{"type":"text","text":"A structure encapsulating errors used by server connections."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"ServerConnectionError"}],"url":"\/documentation\/datacapturing\/serverconnectionerror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/ServerConnectionError/requestFailed(httpStatusCode:)":{"role":"symbol","title":"ServerConnectionError.requestFailed(httpStatusCode:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"requestFailed"},{"kind":"text","text":"("},{"kind":"externalParam","text":"httpStatusCode"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The request failed. The failure status code is provided."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/ServerConnectionError\/requestFailed(httpStatusCode:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/serverconnectionerror\/requestfailed(httpstatuscode:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sessionregistry.json b/DataCapturing.doccarchive/data/documentation/datacapturing/sessionregistry.json deleted file mode 100644 index 74b9fc84..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sessionregistry.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionRegistry"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This implementation stores sessions in memory and allows continuation as long as the app was not terminated."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sessionregistry"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stores the open sessions, this app knows about."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionRegistry"}],"title":"SessionRegistry","roleHeading":"Structure","role":"symbol","symbolKind":"struct","externalID":"s:13DataCapturing15SessionRegistryV","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"SessionRegistry"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry\/init()"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SessionRegistry/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Provide a public initializer, which is required to use this framework"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sessionregistry\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SessionRegistry":{"role":"symbol","title":"SessionRegistry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionRegistry"}],"abstract":[{"type":"text","text":"Stores the open sessions, this app knows about."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionRegistry"}],"url":"\/documentation\/datacapturing\/sessionregistry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/sessionregistry/init().json b/DataCapturing.doccarchive/data/documentation/datacapturing/sessionregistry/init().json deleted file mode 100644 index 62f314b3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/sessionregistry/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/sessionregistry\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Provide a public initializer, which is required to use this framework"}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing15SessionRegistryVACycfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SessionRegistry/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Provide a public initializer, which is required to use this framework"}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/sessionregistry\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SessionRegistry":{"role":"symbol","title":"SessionRegistry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionRegistry"}],"abstract":[{"type":"text","text":"Stores the open sessions, this app knows about."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionRegistry"}],"url":"\/documentation\/datacapturing\/sessionregistry"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator.json b/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator.json deleted file mode 100644 index 06f706f9..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"StaticAuthenticator"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This means that this authenticator does no validation and no network communication."},{"type":"text","text":" "},{"type":"text","text":"It always assumes to have a valid token."},{"type":"text","text":" "},{"type":"text","text":"If this is not the case, API calls based on this authenticator are going to fail!"}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.2.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/staticauthenticator"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"StaticAuthenticator"},{"type":"text","text":" always does authentication using the same Java Web Token (JWT)."},{"type":"text","text":" "},{"type":"text","text":"This token is provided as a fixed value and never changes."},{"type":"text","text":" "},{"type":"text","text":"The creator of an object of this class needs to make sure, that the token is valid."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"StaticAuthenticator"}],"title":"StaticAuthenticator","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing19StaticAuthenticatorC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"StaticAuthenticator"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/init()"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/jwtToken"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/authenticate(onSuccess:onFailure:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Authenticator":{"role":"symbol","title":"Authenticator","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Authenticator"}],"abstract":[{"type":"text","text":"An "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":" provides functionality to authenticate this app on a servoer for receiving the captured data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Authenticator"}],"url":"\/documentation\/datacapturing\/authenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator":{"role":"symbol","title":"StaticAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"StaticAuthenticator"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"StaticAuthenticator"},{"type":"text","text":" always does authentication using the same Java Web Token (JWT)."},{"type":"text","text":" "},{"type":"text","text":"This token is provided as a fixed value and never changes."},{"type":"text","text":" "},{"type":"text","text":"The creator of an object of this class needs to make sure, that the token is valid."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StaticAuthenticator"}],"url":"\/documentation\/datacapturing\/staticauthenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Default constructor needs to be publicly exposed to be able to create it."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/staticauthenticator\/init()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator/jwtToken":{"role":"symbol","title":"jwtToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"jwtToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The token used for authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/jwtToken","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/staticauthenticator\/jwttoken"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator/authenticate(onSuccess:onFailure:)":{"role":"symbol","title":"authenticate(onSuccess:onFailure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Runs the authentication and calls the appropriate function "},{"type":"codeVoice","code":"onSuccess"},{"type":"text","text":" or "},{"type":"codeVoice","code":"onFailure"},{"type":"text","text":" when finished."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/authenticate(onSuccess:onFailure:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/staticauthenticator\/authenticate(onsuccess:onfailure:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator/authenticate(onsuccess:onfailure:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator/authenticate(onsuccess:onfailure:).json deleted file mode 100644 index 5734494b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator/authenticate(onsuccess:onfailure:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"onSuccess: A closure called and supplied with the resulting authentication token, when authentication was successful."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"onFailure: A closure called and supplied with the causing error, when authentication was not successful."}]}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/staticauthenticator\/authenticate(onsuccess:onfailure:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/authenticate(onSuccess:onFailure:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Runs the authentication and calls the appropriate function "},{"type":"codeVoice","code":"onSuccess"},{"type":"text","text":" or "},{"type":"codeVoice","code":"onFailure"},{"type":"text","text":" when finished."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"title":"authenticate(onSuccess:onFailure:)","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing19StaticAuthenticatorC12authenticate9onSuccess0F7FailureyySSXE_ys5Error_pXEtF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator/authenticate(onSuccess:onFailure:)":{"role":"symbol","title":"authenticate(onSuccess:onFailure:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"authenticate"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Runs the authentication and calls the appropriate function "},{"type":"codeVoice","code":"onSuccess"},{"type":"text","text":" or "},{"type":"codeVoice","code":"onFailure"},{"type":"text","text":" when finished."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/authenticate(onSuccess:onFailure:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/staticauthenticator\/authenticate(onsuccess:onfailure:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator":{"role":"symbol","title":"StaticAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"StaticAuthenticator"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"StaticAuthenticator"},{"type":"text","text":" always does authentication using the same Java Web Token (JWT)."},{"type":"text","text":" "},{"type":"text","text":"This token is provided as a fixed value and never changes."},{"type":"text","text":" "},{"type":"text","text":"The creator of an object of this class needs to make sure, that the token is valid."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StaticAuthenticator"}],"url":"\/documentation\/datacapturing\/staticauthenticator"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator/init().json b/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator/init().json deleted file mode 100644 index fc6de045..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator/init().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/staticauthenticator\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/init()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Default constructor needs to be publicly exposed to be able to create it."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"title":"init()","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing19StaticAuthenticatorCACycfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator":{"role":"symbol","title":"StaticAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"StaticAuthenticator"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"StaticAuthenticator"},{"type":"text","text":" always does authentication using the same Java Web Token (JWT)."},{"type":"text","text":" "},{"type":"text","text":"This token is provided as a fixed value and never changes."},{"type":"text","text":" "},{"type":"text","text":"The creator of an object of this class needs to make sure, that the token is valid."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StaticAuthenticator"}],"url":"\/documentation\/datacapturing\/staticauthenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator/init()":{"role":"symbol","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Default constructor needs to be publicly exposed to be able to create it."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/init()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/staticauthenticator\/init()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator/jwttoken.json b/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator/jwttoken.json deleted file mode 100644 index 32c400be..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/staticauthenticator/jwttoken.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"jwtToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/staticauthenticator\/jwttoken"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/jwtToken","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The token used for authentication."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"jwtToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"title":"jwtToken","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing19StaticAuthenticatorC8jwtTokenSSSgvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator/jwtToken":{"role":"symbol","title":"jwtToken","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"jwtToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"The token used for authentication."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator\/jwtToken","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/staticauthenticator\/jwttoken"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/StaticAuthenticator":{"role":"symbol","title":"StaticAuthenticator","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"StaticAuthenticator"}],"abstract":[{"type":"text","text":"A "},{"type":"codeVoice","code":"StaticAuthenticator"},{"type":"text","text":" always does authentication using the same Java Web Token (JWT)."},{"type":"text","text":" "},{"type":"text","text":"This token is provided as a fixed value and never changes."},{"type":"text","text":" "},{"type":"text","text":"The creator of an object of this class needs to make sure, that the token is valid."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/StaticAuthenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"StaticAuthenticator"}],"url":"\/documentation\/datacapturing\/staticauthenticator"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/status.json b/DataCapturing.doccarchive/data/documentation/datacapturing/status.json deleted file mode 100644 index 6b3d9859..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/status.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This tells the caller, whether an asynchronous call has been successful or not and if not it provides further information about the "},{"type":"codeVoice","code":"Error"},{"type":"text","text":". This is required, since an asynchronous call can not throw an "},{"type":"codeVoice","code":"Error"},{"type":"text","text":" to the calling thread."}]},{"type":"codeListing","syntax":null,"code":["case success","case error(Error)"]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.1"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.2.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use Swift 5 Result or Swift 5.5 async\/await"}]}],"variants":[{"paths":["\/documentation\/datacapturing\/status"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The status returned by asynchronous callback handlers."}],"kind":"symbol","metadata":{"navigatorTitle":[{"kind":"identifier","text":"Status"}],"role":"symbol","title":"Status","roleHeading":"Enumeration","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"symbolKind":"enum","externalID":"s:13DataCapturing6StatusO","modules":[{"name":"DataCapturing"}],"platforms":[]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status\/error(_:)","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status\/success"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status/success":{"role":"symbol","title":"Status.success","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"success"}],"abstract":[{"type":"text","text":"The status returned if an asynchronous callback has finished successfully."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status\/success","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/datacapturing\/status\/success"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status/error(_:)":{"role":"symbol","title":"Status.error(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The status returned if an asynchronous callback has finished with an error. Details about the error are available via the "},{"type":"codeVoice","code":"Error"},{"type":"text","text":" parameter."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status\/error(_:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/datacapturing\/status\/error(_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status":{"deprecated":true,"role":"symbol","title":"Status","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[{"type":"text","text":"The status returned by asynchronous callback handlers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/datacapturing\/status"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/status/error(_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/status/error(_:).json deleted file mode 100644 index fb7862d3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/status/error(_:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/status\/error(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status\/error(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The status returned if an asynchronous callback has finished with an error. Details about the error are available via the "},{"type":"codeVoice","code":"Error"},{"type":"text","text":" parameter."}],"kind":"symbol","metadata":{"role":"symbol","title":"Status.error(_:)","roleHeading":"Case","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"symbolKind":"case","externalID":"s:13DataCapturing6StatusO5erroryACs5Error_pcACmF","modules":[{"name":"DataCapturing"}],"platforms":[]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use Swift 5 Result or Swift 5.5 async\/await"}]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status":{"deprecated":true,"role":"symbol","title":"Status","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[{"type":"text","text":"The status returned by asynchronous callback handlers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/datacapturing\/status"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status/error(_:)":{"role":"symbol","title":"Status.error(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"error"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"The status returned if an asynchronous callback has finished with an error. Details about the error are available via the "},{"type":"codeVoice","code":"Error"},{"type":"text","text":" parameter."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status\/error(_:)","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/datacapturing\/status\/error(_:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/status/success.json b/DataCapturing.doccarchive/data/documentation/datacapturing/status/success.json deleted file mode 100644 index 231ae251..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/status/success.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"success"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/status\/success"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status\/success","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The status returned if an asynchronous callback has finished successfully."}],"kind":"symbol","metadata":{"role":"symbol","title":"Status.success","roleHeading":"Case","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"success"}],"symbolKind":"case","externalID":"s:13DataCapturing6StatusO7successyA2CmF","modules":[{"name":"DataCapturing"}],"platforms":[]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status"]]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use Swift 5 Result or Swift 5.5 async\/await"}]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status/success":{"role":"symbol","title":"Status.success","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"success"}],"abstract":[{"type":"text","text":"The status returned if an asynchronous callback has finished successfully."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status\/success","kind":"symbol","type":"topic","deprecated":true,"url":"\/documentation\/datacapturing\/status\/success"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status":{"deprecated":true,"role":"symbol","title":"Status","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[{"type":"text","text":"The status returned by asynchronous callback handlers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/datacapturing\/status"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer.json deleted file mode 100644 index 0c8f1611..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"An object of this call can be used to synchronize data either in the foreground or in the background."},{"type":"text","text":" "},{"type":"text","text":"Background synchronization happens only if the synchronizing device has an active Wifi connection."},{"type":"text","text":" "},{"type":"text","text":"To activate background synchronization you need to call the "},{"type":"codeVoice","code":"activate"},{"type":"text","text":" method."},{"type":"text","text":" "},{"type":"text","text":"Background synchronization is called as soon as WiFi becomes available or every 60 minutes."},{"type":"text","text":" "},{"type":"text","text":"For foreground synchronization use "},{"type":"codeVoice","code":"syncChecked()"},{"type":"text","text":"."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"4.0.1"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"2.3.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"title":"Synchronizer","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing12SynchronizerC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/init(apiURL:coreDataStack:cleaner:sessionRegistry:authenticator:handler:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/syncOnWiFiOnly"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/activate()","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/deactivate()","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/sync()","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/syncChecked()"]},{"title":"Enumerations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/activate()":{"role":"symbol","title":"activate()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"activate"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Starts background synchronization as prepared in this objects initializer."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/activate()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/activate()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/deactivate()":{"role":"symbol","title":"deactivate()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deactivate"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stops background synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/deactivate()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/deactivate()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/sync()":{"role":"symbol","title":"sync()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sync"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Synchronize all measurements now."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/sync()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/sync()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/syncOnWiFiOnly":{"role":"symbol","title":"syncOnWiFiOnly","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncOnWiFiOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether synchronization of data should only happen if the device is connected to a wireless local area network (Wifi)."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/syncOnWiFiOnly","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synconwifionly"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/syncChecked()":{"role":"symbol","title":"syncChecked()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncChecked"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Tries to synchronize all measurements after checking for a proper connection. If "},{"type":"codeVoice","code":"syncOnWiFiOnly"},{"type":"text","text":" is true, this will only work if the device is connected to a WiFi network."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/syncChecked()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/syncchecked()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/init(apiURL:coreDataStack:cleaner:sessionRegistry:authenticator:handler:)":{"role":"symbol","title":"init(apiURL:coreDataStack:cleaner:sessionRegistry:authenticator:handler:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"coreDataStack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"cleaner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Cleaner","preciseIdentifier":"s:13DataCapturing7CleanerP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"sessionRegistry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionRegistry","preciseIdentifier":"s:13DataCapturing15SessionRegistryV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"authenticator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Authenticator","preciseIdentifier":"s:13DataCapturing13AuthenticatorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"handler"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:13DataCapturing6StatusO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializer that sets the initial value of all the properties and prepares the background synchronization job."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/init(apiURL:coreDataStack:cleaner:sessionRegistry:authenticator:handler:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/init(apiurl:coredatastack:cleaner:sessionregistry:authenticator:handler:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/activate().json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/activate().json deleted file mode 100644 index f04d4900..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/activate().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"activate"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"SynchronizerError.missingHost"},{"type":"text","text":" If tha "},{"type":"codeVoice","code":"apiURL"},{"type":"text","text":" provides no valid hostname."}]}],"type":"aside","name":"Throws"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"SynchronizerError.unableToBuildReachabilityManager"},{"type":"text","text":" if the Alamofire "},{"type":"codeVoice","code":"NetworkReachabilityManager"},{"type":"text","text":" could not be created for the current host."}]}],"type":"aside","name":"Throws"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"SynchronizationError.reachabilityStartFailed"},{"type":"text","text":" if the system was unable to start listening for reachability changes."}]}],"type":"aside","name":"Throws"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/activate()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/activate()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Starts background synchronization as prepared in this objects initializer."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"activate"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"title":"activate()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing12SynchronizerC8activateyyKF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/activate()":{"role":"symbol","title":"activate()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"activate"},{"kind":"text","text":"() "},{"kind":"keyword","text":"throws"}],"abstract":[{"type":"text","text":"Starts background synchronization as prepared in this objects initializer."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/activate()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/activate()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/deactivate().json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/deactivate().json deleted file mode 100644 index 63db0b1b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/deactivate().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deactivate"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/deactivate()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/deactivate()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Stops background synchronization."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deactivate"},{"kind":"text","text":"()"}],"title":"deactivate()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing12SynchronizerC10deactivateyyF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/deactivate()":{"role":"symbol","title":"deactivate()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"deactivate"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Stops background synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/deactivate()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/deactivate()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/init(apiurl:coredatastack:cleaner:sessionregistry:authenticator:handler:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/init(apiurl:coredatastack:cleaner:sessionregistry:authenticator:handler:).json deleted file mode 100644 index 901776c4..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/init(apiurl:coredatastack:cleaner:sessionregistry:authenticator:handler:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"coreDataStack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC","text":"CoreDataManager"},{"kind":"text","text":", "},{"kind":"externalParam","text":"cleaner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner","preciseIdentifier":"s:13DataCapturing7CleanerP","text":"Cleaner"},{"kind":"text","text":", "},{"kind":"externalParam","text":"sessionRegistry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry","preciseIdentifier":"s:13DataCapturing15SessionRegistryV","text":"SessionRegistry"},{"kind":"text","text":" = SessionRegistry(), "},{"kind":"externalParam","text":"authenticator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","preciseIdentifier":"s:13DataCapturing13AuthenticatorP","text":"Authenticator"},{"kind":"text","text":", "},{"kind":"externalParam","text":"handler"},{"kind":"text","text":": "},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO","text":"DataCapturingEvent"},{"kind":"text","text":", "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","preciseIdentifier":"s:13DataCapturing6StatusO","text":"Status"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"apiURL","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The URL to a Cyface API"}]}]},{"name":"coreDataStack","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Stack used to access "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":"."}]}]},{"name":"cleaner","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A strategy for cleaning the persistent storage after data synchronization."}]}]},{"name":"sessionRegistry","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A registry to store open server sessions, to try to repeat instead of restart an upload."}]}]},{"name":"authenticator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The authenticator to use to check on the server on whether the current user is valid or not."}]}]},{"name":"handler","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The handler to call, when synchronization for a measurement has finished."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/init(apiurl:coredatastack:cleaner:sessionregistry:authenticator:handler:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/init(apiURL:coreDataStack:cleaner:sessionRegistry:authenticator:handler:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Initializer that sets the initial value of all the properties and prepares the background synchronization job."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"coreDataStack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"cleaner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Cleaner","preciseIdentifier":"s:13DataCapturing7CleanerP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"sessionRegistry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionRegistry","preciseIdentifier":"s:13DataCapturing15SessionRegistryV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"authenticator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Authenticator","preciseIdentifier":"s:13DataCapturing13AuthenticatorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"handler"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:13DataCapturing6StatusO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"title":"init(apiURL:coreDataStack:cleaner:sessionRegistry:authenticator:handler:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing12SynchronizerC6apiURL04coreA5Stack7cleaner15sessionRegistry13authenticator7handlerAC10Foundation0E0V_AA04CoreA7ManagerCAA7Cleaner_pAA07SessionJ0VAA13Authenticator_pyAA0aB5EventO_AA6StatusOtctcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DataCapturingEvent":{"role":"symbol","title":"DataCapturingEvent","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"DataCapturingEvent"}],"abstract":[{"type":"text","text":"Events occuring during capturing and transmitting data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DataCapturingEvent","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DataCapturingEvent"}],"url":"\/documentation\/datacapturing\/datacapturingevent"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Cleaner":{"role":"symbol","title":"Cleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Cleaner"}],"abstract":[{"type":"text","text":"Implementations of this protocol are responsible for cleaning the database after a synchronization run."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Cleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Cleaner"}],"url":"\/documentation\/datacapturing\/cleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/CoreDataManager":{"role":"symbol","title":"CoreDataManager","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"CoreDataManager"}],"abstract":[{"type":"text","text":"A class for objects representing a "},{"type":"emphasis","inlineContent":[{"type":"text","text":"CoreData"}]},{"type":"text","text":" stack."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/CoreDataManager","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"CoreDataManager"}],"url":"\/documentation\/datacapturing\/coredatamanager"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Status":{"deprecated":true,"role":"symbol","title":"Status","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"Status"}],"abstract":[{"type":"text","text":"The status returned by asynchronous callback handlers."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Status","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Status"}],"url":"\/documentation\/datacapturing\/status"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SessionRegistry":{"role":"symbol","title":"SessionRegistry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionRegistry"}],"abstract":[{"type":"text","text":"Stores the open sessions, this app knows about."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionRegistry"}],"url":"\/documentation\/datacapturing\/sessionregistry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Authenticator":{"role":"symbol","title":"Authenticator","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Authenticator"}],"abstract":[{"type":"text","text":"An "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":" provides functionality to authenticate this app on a servoer for receiving the captured data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Authenticator"}],"url":"\/documentation\/datacapturing\/authenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/init(apiURL:coreDataStack:cleaner:sessionRegistry:authenticator:handler:)":{"role":"symbol","title":"init(apiURL:coreDataStack:cleaner:sessionRegistry:authenticator:handler:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiURL"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"coreDataStack"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoreDataManager","preciseIdentifier":"s:13DataCapturing04CoreA7ManagerC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"cleaner"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Cleaner","preciseIdentifier":"s:13DataCapturing7CleanerP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"sessionRegistry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionRegistry","preciseIdentifier":"s:13DataCapturing15SessionRegistryV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"authenticator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Authenticator","preciseIdentifier":"s:13DataCapturing13AuthenticatorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"handler"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"DataCapturingEvent","preciseIdentifier":"s:13DataCapturing0aB5EventO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Status","preciseIdentifier":"s:13DataCapturing6StatusO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializer that sets the initial value of all the properties and prepares the background synchronization job."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/init(apiURL:coreDataStack:cleaner:sessionRegistry:authenticator:handler:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/init(apiurl:coredatastack:cleaner:sessionregistry:authenticator:handler:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/sync().json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/sync().json deleted file mode 100644 index 46ebcafb..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/sync().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sync"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"The call is asynchronous, meaning it returns almost immediately, while the synchronization continues running inside its own thread."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"You may call this method multiple times in short succession."},{"type":"text","text":" "},{"type":"text","text":"However only one synchronization can be active at a given time."},{"type":"text","text":" "},{"type":"text","text":"If you call this during an active synchronization it is going to return without doing anything."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/sync()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/sync()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Synchronize all measurements now."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sync"},{"kind":"text","text":"()"}],"title":"sync()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing12SynchronizerC4syncyyF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/sync()":{"role":"symbol","title":"sync()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sync"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Synchronize all measurements now."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/sync()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/sync()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/syncchecked().json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/syncchecked().json deleted file mode 100644 index d3da1b3f..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/syncchecked().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncChecked"},{"kind":"text","text":"()"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/syncchecked()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/syncChecked()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Tries to synchronize all measurements after checking for a proper connection. If "},{"type":"codeVoice","code":"syncOnWiFiOnly"},{"type":"text","text":" is true, this will only work if the device is connected to a WiFi network."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncChecked"},{"kind":"text","text":"()"}],"title":"syncChecked()","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:13DataCapturing12SynchronizerC11syncCheckedyyF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/syncChecked()":{"role":"symbol","title":"syncChecked()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncChecked"},{"kind":"text","text":"()"}],"abstract":[{"type":"text","text":"Tries to synchronize all measurements after checking for a proper connection. If "},{"type":"codeVoice","code":"syncOnWiFiOnly"},{"type":"text","text":" is true, this will only work if the device is connected to a WiFi network."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/syncChecked()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/syncchecked()"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror.json deleted file mode 100644 index ca54d986..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP","doc:\/\/org.cocoapods.DataCapturing\/SH","doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"title":"Synchronizer.SynchronizerError","roleHeading":"Enumeration","role":"symbol","symbolKind":"enum","externalID":"s:13DataCapturing12SynchronizerC0C5ErrorO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer"]]},"topicSections":[{"title":"Enumeration Cases","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/missingHost","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/reachabilityStartFailed","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/unableToBuildReachabilityManager"]},{"title":"Default Implementations","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Equatable-Implementations","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Error-Implementations"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/s5ErrorP":{"type":"unresolvable","title":"Swift.Error","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s5ErrorP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/equatable-implementations"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/reachabilityStartFailed":{"role":"symbol","title":"Synchronizer.SynchronizerError.reachabilityStartFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"reachabilityStartFailed"}],"abstract":[{"type":"text","text":"If starting reachability checks fails."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/reachabilityStartFailed","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/reachabilitystartfailed"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"},"doc://org.cocoapods.DataCapturing/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s8SendableP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/missingHost":{"role":"symbol","title":"Synchronizer.SynchronizerError.missingHost","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"missingHost"}],"abstract":[{"type":"text","text":"If the host of the server to synchronize to is missing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/missingHost","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/missinghost"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/error-implementations"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/unableToBuildReachabilityManager":{"role":"symbol","title":"Synchronizer.SynchronizerError.unableToBuildReachabilityManager","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unableToBuildReachabilityManager"}],"abstract":[{"type":"text","text":"If the Alamofire reachability manager could not be built."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/unableToBuildReachabilityManager","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/unabletobuildreachabilitymanager"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/!=(_:_:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/!=(_:_:).json deleted file mode 100644 index 4d6aadf6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/!=(_:_:).json +++ /dev/null @@ -1 +0,0 @@ -{"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":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror\/!=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/!=(_:_:)","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:13DataCapturing12SynchronizerC0C5ErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Equatable-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/Equatable-Implementations":{"role":"collectionGroup","title":"Equatable Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Equatable-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/equatable-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/asaferror(orfailwith:file:line:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/asaferror(orfailwith:file:line:).json deleted file mode 100644 index 9f2dc18e..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/asaferror(orfailwith:file:line:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":" "},{"kind":"internalParam","text":"message"},{"kind":"text","text":": "},{"kind":"attribute","text":"@autoclosure "},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#file"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":" = "},{"kind":"keyword","text":"#line"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror\/asaferror(orfailwith:file:line:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/asAFError(orFailWith:file:line:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"symbolKind":"method","externalID":"s:s5ErrorP9AlamofireE9asAFError10orFailWith4file4lineAC0D0OSSyXK_s12StaticStringVSutF::SYNTHESIZED::s:13DataCapturing12SynchronizerC0C5ErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/asaferror(orfailwith:file:line:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/asaferror.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/asaferror.json deleted file mode 100644 index e0a19521..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/asaferror.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror\/asaferror"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/asAFError","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"asAFError","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp::SYNTHESIZED::s:13DataCapturing12SynchronizerC0C5ErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/error-implementations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/equatable-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/equatable-implementations.json deleted file mode 100644 index 5f8930f5..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/equatable-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Equatable-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Equatable Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError"]]},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/!=(_:_:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/!=(_:_:)":{"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:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/!=(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/!=(_:_:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/error-implementations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/error-implementations.json deleted file mode 100644 index f7e7cef4..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/error-implementations.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror\/error-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Error-Implementations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"article","metadata":{"modules":[{"name":"DataCapturing"}],"role":"collectionGroup","title":"Error Implementations"},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/asAFError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/localizedDescription"],"generated":true},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/asAFError(orFailWith:file:line:)"],"generated":true}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/asAFError":{"role":"symbol","title":"asAFError","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":"."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/asAFError","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/asaferror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/asAFError(orFailWith:file:line:)":{"role":"symbol","title":"asAFError(orFailWith:file:line:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"asAFError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"orFailWith"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StaticString","preciseIdentifier":"s:s12StaticStringV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"line"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"AFError","preciseIdentifier":"s:9Alamofire7AFErrorO"}],"abstract":[{"type":"text","text":"Returns the instance cast as an "},{"type":"codeVoice","code":"AFError"},{"type":"text","text":". If casting fails, a "},{"type":"codeVoice","code":"fatalError"},{"type":"text","text":" with the specified "},{"type":"codeVoice","code":"message"},{"type":"text","text":" is thrown."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/asAFError(orFailWith:file:line:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/asaferror(orfailwith:file:line:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/localizeddescription"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/localizeddescription.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/localizeddescription.json deleted file mode 100644 index aaa2a938..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/localizeddescription.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/localizedDescription","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","title":"localizedDescription","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"symbolKind":"property","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:13DataCapturing12SynchronizerC0C5ErrorO","extendedModule":"Swift","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Error-Implementations"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/localizedDescription":{"role":"symbol","title":"localizedDescription","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/localizedDescription","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/localizeddescription"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/Error-Implementations":{"role":"collectionGroup","title":"Error Implementations","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/Error-Implementations","kind":"article","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/error-implementations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/missinghost.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/missinghost.json deleted file mode 100644 index 237b5d5b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/missinghost.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"missingHost"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror\/missinghost"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/missingHost","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If the host of the server to synchronize to is missing."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"missingHost"}],"title":"Synchronizer.SynchronizerError.missingHost","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing12SynchronizerC0C5ErrorO11missingHostyA2EmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/missingHost":{"role":"symbol","title":"Synchronizer.SynchronizerError.missingHost","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"missingHost"}],"abstract":[{"type":"text","text":"If the host of the server to synchronize to is missing."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/missingHost","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/missinghost"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/reachabilitystartfailed.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/reachabilitystartfailed.json deleted file mode 100644 index 6f468baa..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/reachabilitystartfailed.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"reachabilityStartFailed"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror\/reachabilitystartfailed"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/reachabilityStartFailed","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If starting reachability checks fails."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"reachabilityStartFailed"}],"title":"Synchronizer.SynchronizerError.reachabilityStartFailed","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing12SynchronizerC0C5ErrorO23reachabilityStartFailedyA2EmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/reachabilityStartFailed":{"role":"symbol","title":"Synchronizer.SynchronizerError.reachabilityStartFailed","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"reachabilityStartFailed"}],"abstract":[{"type":"text","text":"If starting reachability checks fails."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/reachabilityStartFailed","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/reachabilitystartfailed"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/unabletobuildreachabilitymanager.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/unabletobuildreachabilitymanager.json deleted file mode 100644 index 13f099ed..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synchronizererror/unabletobuildreachabilitymanager.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unableToBuildReachabilityManager"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synchronizererror\/unabletobuildreachabilitymanager"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/unableToBuildReachabilityManager","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"If the Alamofire reachability manager could not be built."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unableToBuildReachabilityManager"}],"title":"Synchronizer.SynchronizerError.unableToBuildReachabilityManager","roleHeading":"Case","role":"symbol","symbolKind":"case","externalID":"s:13DataCapturing12SynchronizerC0C5ErrorO32unableToBuildReachabilityManageryA2EmF","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError/unableToBuildReachabilityManager":{"role":"symbol","title":"Synchronizer.SynchronizerError.unableToBuildReachabilityManager","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"unableToBuildReachabilityManager"}],"abstract":[{"type":"text","text":"If the Alamofire reachability manager could not be built."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError\/unableToBuildReachabilityManager","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror\/unabletobuildreachabilitymanager"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/SynchronizerError":{"role":"symbol","title":"Synchronizer.SynchronizerError","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"SynchronizerError"}],"abstract":[{"type":"text","text":"Errors thrown during data synchronization."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/SynchronizerError","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SynchronizerError"}],"url":"\/documentation\/datacapturing\/synchronizer\/synchronizererror"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synconwifionly.json b/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synconwifionly.json deleted file mode 100644 index 402b2846..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/synchronizer/synconwifionly.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncOnWiFiOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]},{"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":" data is only synchronized via Wifi; if "},{"type":"codeVoice","code":"false"},{"type":"text","text":" data is also synchronized via mobile network."},{"type":"text","text":" "},{"type":"text","text":"The default setting is "},{"type":"codeVoice","code":"true"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"Setting this to "},{"type":"codeVoice","code":"false"},{"type":"text","text":" might put heavy load on the users device and deplete her or his data plan."}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/synchronizer\/synconwifionly"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/syncOnWiFiOnly","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A flag indicating whether synchronization of data should only happen if the device is connected to a wireless local area network (Wifi)."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncOnWiFiOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"syncOnWiFiOnly","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing12SynchronizerC14syncOnWiFiOnlySbvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer/syncOnWiFiOnly":{"role":"symbol","title":"syncOnWiFiOnly","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"syncOnWiFiOnly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"A flag indicating whether synchronization of data should only happen if the device is connected to a wireless local area network (Wifi)."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer\/syncOnWiFiOnly","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/synchronizer\/synconwifionly"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Synchronizer":{"role":"symbol","title":"Synchronizer","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Synchronizer"}],"abstract":[{"type":"text","text":"An instance of this class synchronizes captured measurements from persistent storage to a Cyface server."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Synchronizer","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Synchronizer"}],"url":"\/documentation\/datacapturing\/synchronizer"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/track.json b/DataCapturing.doccarchive/data/documentation/datacapturing/track.json deleted file mode 100644 index 4349ad0c..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/track.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Each track is part of a parent "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":". New Tracks are appended to a measurement if the user pauses and resumes capturing of that "},{"type":"codeVoice","code":"Measurement"},{"type":"text","text":"."}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/track"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"title":"Track","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing5TrackC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"Track"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track\/locations"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track/locations":{"role":"symbol","title":"locations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The locations constituting this track."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track\/locations","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/track\/locations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/track/locations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/track/locations.json deleted file mode 100644 index a6efe1ce..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/track/locations.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC","text":"GeoLocation"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/track\/locations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track\/locations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"The locations constituting this track."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":"]"}],"title":"locations","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:13DataCapturing5TrackC9locationsSayAA11GeoLocationCGvp","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocation":{"role":"symbol","title":"GeoLocation","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocation"}],"abstract":[{"type":"text","text":"One geo location measurement provided by the system."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocation","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocation"}],"url":"\/documentation\/datacapturing\/geolocation"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track/locations":{"role":"symbol","title":"locations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeoLocation","preciseIdentifier":"s:13DataCapturing11GeoLocationC"},{"kind":"text","text":"]"}],"abstract":[{"type":"text","text":"The locations constituting this track."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track\/locations","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/track\/locations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Track":{"role":"symbol","title":"Track","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"Track"}],"abstract":[{"type":"text","text":"Represents a single continuously measured track of geo location and associated sensor data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Track","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Track"}],"url":"\/documentation\/datacapturing\/track"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackcleaner.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackcleaner.json deleted file mode 100644 index 1c5d55e9..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackcleaner.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackCleaner"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Since"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackcleaner"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner"],"kind":"relationships","title":"Conforming Types","type":"conformingTypes"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackCleaner"}],"title":"TrackCleaner","roleHeading":"Protocol","role":"symbol","symbolKind":"protocol","externalID":"s:13DataCapturing12TrackCleanerP","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"TrackCleaner"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner\/isValid(location:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/DefaultTrackCleaner":{"role":"symbol","title":"DefaultTrackCleaner","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"DefaultTrackCleaner"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/DefaultTrackCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"DefaultTrackCleaner"}],"url":"\/documentation\/datacapturing\/defaulttrackcleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackCleaner":{"role":"symbol","title":"TrackCleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackCleaner"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackCleaner"}],"url":"\/documentation\/datacapturing\/trackcleaner"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackCleaner/isValid(location:)":{"role":"symbol","title":"isValid(location:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":"("},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Checks whether the provided "},{"type":"codeVoice","code":"location"},{"type":"text","text":" is valid within this cleaner."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner\/isValid(location:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/trackcleaner\/isvalid(location:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackcleaner/isvalid(location:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackcleaner/isvalid(location:).json deleted file mode 100644 index a0ee6707..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackcleaner/isvalid(location:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":"("},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"location","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The location to check for validity"}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackcleaner\/isvalid(location:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner\/isValid(location:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Checks whether the provided "},{"type":"codeVoice","code":"location"},{"type":"text","text":" is valid within this cleaner."}],"kind":"symbol","metadata":{"role":"symbol","title":"isValid(location:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":"("},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method","externalID":"s:13DataCapturing12TrackCleanerP7isValid8locationSbSo10CLLocationC_tF","required":true,"modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackCleaner/isValid(location:)":{"role":"symbol","title":"isValid(location:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isValid"},{"kind":"text","text":"("},{"kind":"externalParam","text":"location"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CLLocation","preciseIdentifier":"c:objc(cs)CLLocation"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Checks whether the provided "},{"type":"codeVoice","code":"location"},{"type":"text","text":" is valid within this cleaner."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner\/isValid(location:)","kind":"symbol","required":true,"type":"topic","url":"\/documentation\/datacapturing\/trackcleaner\/isvalid(location:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackCleaner":{"role":"symbol","title":"TrackCleaner","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackCleaner"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackCleaner","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackCleaner"}],"url":"\/documentation\/datacapturing\/trackcleaner"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo.json deleted file mode 100644 index fe2705f9..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(TrackMO) "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":[],"kind":"relationships","title":"Inherits From","type":"inheritsFrom"},{"identifiers":["doc:\/\/org.cocoapods.DataCapturing\/7Combine16ObservableObjectP","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSFetchRequestResult","doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject","doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP","doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP","doc:\/\/org.cocoapods.DataCapturing\/SQ","doc:\/\/org.cocoapods.DataCapturing\/SH"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"title":"TrackMO","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"c:@M@DataCapturing@objc(cs)TrackMO","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"TrackMO"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/init(entity:insertInto:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/locations","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/measurement"]},{"title":"Instance Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/addToLocations(_:)-7bsx1","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/addToLocations(_:)-8d299","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/insertIntoLocations(_:at:)-674x0","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/insertIntoLocations(_:at:)-8iyhq","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(_:)-2rclk","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(_:)-9s5vo","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(at:)-7pewh","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(at:)-geei","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/replaceLocations(at:with:)-28ojw","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/replaceLocations(at:with:)-9m8a9"]},{"title":"Type Methods","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/fetchRequest()"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/locations":{"role":"symbol","title":"locations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/locations","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/locations"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/removeFromLocations(_:)-2rclk":{"role":"symbol","title":"removeFromLocations(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(_:)-2rclk","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/removefromlocations(_:)-2rclk"},"doc://org.cocoapods.DataCapturing/7Combine16ObservableObjectP":{"type":"unresolvable","title":"Combine.ObservableObject","identifier":"doc:\/\/org.cocoapods.DataCapturing\/7Combine16ObservableObjectP"},"doc://org.cocoapods.DataCapturing/s23CustomStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s23CustomStringConvertibleP"},"doc://org.cocoapods.DataCapturing/objc(pl)NSFetchRequestResult":{"type":"unresolvable","title":"CoreData.NSFetchRequestResult","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSFetchRequestResult"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/measurement":{"role":"symbol","title":"measurement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/measurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/removeFromLocations(at:)-7pewh":{"role":"symbol","title":"removeFromLocations(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(at:)-7pewh","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/removefromlocations(at:)-7pewh"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/addToLocations(_:)-7bsx1":{"role":"symbol","title":"addToLocations(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/addToLocations(_:)-7bsx1","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/addtolocations(_:)-7bsx1"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/objc(pl)NSObject":{"type":"unresolvable","title":"ObjectiveC.NSObjectProtocol","identifier":"doc:\/\/org.cocoapods.DataCapturing\/objc(pl)NSObject"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/init(entity:insertInto:)":{"role":"symbol","title":"init(entity:insertInto:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/init(entity:insertInto:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/init(entity:insertinto:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/addToLocations(_:)-8d299":{"role":"symbol","title":"addToLocations(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/addToLocations(_:)-8d299","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/addtolocations(_:)-8d299"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/replaceLocations(at:with:)-9m8a9":{"role":"symbol","title":"replaceLocations(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/replaceLocations(at:with:)-9m8a9","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/replacelocations(at:with:)-9m8a9"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/removeFromLocations(_:)-9s5vo":{"role":"symbol","title":"removeFromLocations(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(_:)-9s5vo","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/removefromlocations(_:)-9s5vo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/removeFromLocations(at:)-geei":{"role":"symbol","title":"removeFromLocations(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(at:)-geei","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/removefromlocations(at:)-geei"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/insertIntoLocations(_:at:)-8iyhq":{"role":"symbol","title":"insertIntoLocations(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoLocations"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/insertIntoLocations(_:at:)-8iyhq","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/insertintolocations(_:at:)-8iyhq"},"doc://org.cocoapods.DataCapturing/SH":{"type":"unresolvable","title":"Swift.Hashable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SH"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/replaceLocations(at:with:)-28ojw":{"role":"symbol","title":"replaceLocations(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/replaceLocations(at:with:)-28ojw","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/replacelocations(at:with:)-28ojw"},"doc://org.cocoapods.DataCapturing/s7CVarArgP":{"type":"unresolvable","title":"Swift.CVarArg","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s7CVarArgP"},"doc://org.cocoapods.DataCapturing/s28CustomDebugStringConvertibleP":{"type":"unresolvable","title":"Swift.CustomDebugStringConvertible","identifier":"doc:\/\/org.cocoapods.DataCapturing\/s28CustomDebugStringConvertibleP"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/fetchRequest()":{"role":"symbol","title":"fetchRequest()","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/fetchRequest()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/fetchrequest()"},"doc://org.cocoapods.DataCapturing/SQ":{"type":"unresolvable","title":"Swift.Equatable","identifier":"doc:\/\/org.cocoapods.DataCapturing\/SQ"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/insertIntoLocations(_:at:)-674x0":{"role":"symbol","title":"insertIntoLocations(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/insertIntoLocations(_:at:)-674x0","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/insertintolocations(_:at:)-674x0"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/addtolocations(_:)-7bsx1.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/addtolocations(_:)-7bsx1.json deleted file mode 100644 index a18ef823..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/addtolocations(_:)-7bsx1.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(addLocations:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/addtolocations(_:)-7bsx1"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/addToLocations(_:)-7bsx1","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"addToLocations(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)addLocations:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/addToLocations(_:)-7bsx1":{"role":"symbol","title":"addToLocations(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/addToLocations(_:)-7bsx1","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/addtolocations(_:)-7bsx1"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/addtolocations(_:)-8d299.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/addtolocations(_:)-8d299.json deleted file mode 100644 index c3a05624..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/addtolocations(_:)-8d299.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(addLocationsObject:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/addtolocations(_:)-8d299"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/addToLocations(_:)-8d299","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"addToLocations(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)addLocationsObject:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/addToLocations(_:)-8d299":{"role":"symbol","title":"addToLocations(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"addToLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/addToLocations(_:)-8d299","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/addtolocations(_:)-8d299"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/fetchrequest().json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/fetchrequest().json deleted file mode 100644 index dc9c7522..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/fetchrequest().json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@nonobjc"},{"kind":"text","text":" "},{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO","text":"TrackMO"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/fetchrequest()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/fetchRequest()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"fetchRequest()","roleHeading":"Type Method","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":">"}],"symbolKind":"method","externalID":"s:13DataCapturing7TrackMOC12fetchRequestSo07NSFetchF0CyACGyFZ","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/fetchRequest()":{"role":"symbol","title":"fetchRequest()","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fetchRequest"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"NSFetchRequest","preciseIdentifier":"c:objc(cs)NSFetchRequest"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"TrackMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)TrackMO"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/fetchRequest()","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/fetchrequest()"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/init(entity:insertinto:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/init(entity:insertinto:).json deleted file mode 100644 index 438a311b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/init(entity:insertinto:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"override"},{"kind":"text","text":" "},{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":" "},{"kind":"internalParam","text":"context"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/init(entity:insertinto:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/init(entity:insertInto:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"title":"init(entity:insertInto:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"c:@M@DataCapturing@objc(cs)TrackMO(im)initWithEntity:insertIntoManagedObjectContext:","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/init(entity:insertInto:)":{"role":"symbol","title":"init(entity:insertInto:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"entity"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSEntityDescription","preciseIdentifier":"c:objc(cs)NSEntityDescription"},{"kind":"text","text":", "},{"kind":"externalParam","text":"insertInto"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSManagedObjectContext","preciseIdentifier":"c:objc(cs)NSManagedObjectContext"},{"kind":"text","text":"?)"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/init(entity:insertInto:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/init(entity:insertinto:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/insertintolocations(_:at:)-674x0.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/insertintolocations(_:at:)-674x0.json deleted file mode 100644 index 5ff973fb..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/insertintolocations(_:at:)-674x0.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(insertObject:inLocationsAtIndex:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"idx"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/insertintolocations(_:at:)-674x0"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/insertIntoLocations(_:at:)-674x0","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"insertIntoLocations(_:at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)insertObject:inLocationsAtIndex:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/insertIntoLocations(_:at:)-674x0":{"role":"symbol","title":"insertIntoLocations(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/insertIntoLocations(_:at:)-674x0","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/insertintolocations(_:at:)-674x0"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/insertintolocations(_:at:)-8iyhq.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/insertintolocations(_:at:)-8iyhq.json deleted file mode 100644 index b842aa55..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/insertintolocations(_:at:)-8iyhq.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(insertLocations:atIndexes:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"indexes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/insertintolocations(_:at:)-8iyhq"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/insertIntoLocations(_:at:)-8iyhq","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"insertIntoLocations(_:at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoLocations"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)insertLocations:atIndexes:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/insertIntoLocations(_:at:)-8iyhq":{"role":"symbol","title":"insertIntoLocations(_:at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"insertIntoLocations"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/insertIntoLocations(_:at:)-8iyhq","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/insertintolocations(_:at:)-8iyhq"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/locations.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/locations.json deleted file mode 100644 index 918a3c63..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/locations.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/locations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/locations","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"locations","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(py)locations","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/locations":{"role":"symbol","title":"locations","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"locations"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/locations","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/locations"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/measurement.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/measurement.json deleted file mode 100644 index 6410f1cc..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/measurement.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO","text":"MeasurementMO"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"kind":"keyword","text":"set"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/measurement"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/measurement","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"measurement","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO"},{"kind":"text","text":"?"}],"symbolKind":"property","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(py)measurement","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/MeasurementMO":{"role":"symbol","title":"MeasurementMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"MeasurementMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/MeasurementMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"MeasurementMO"}],"url":"\/documentation\/datacapturing\/measurementmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/measurement":{"role":"symbol","title":"measurement","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"measurement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"MeasurementMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)MeasurementMO"},{"kind":"text","text":"?"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/measurement","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/measurement"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(_:)-2rclk.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(_:)-2rclk.json deleted file mode 100644 index 23670fc6..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(_:)-2rclk.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeLocationsObject:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/removefromlocations(_:)-2rclk"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(_:)-2rclk","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromLocations(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)removeLocationsObject:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/removeFromLocations(_:)-2rclk":{"role":"symbol","title":"removeFromLocations(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(_:)-2rclk","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/removefromlocations(_:)-2rclk"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(_:)-9s5vo.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(_:)-9s5vo.json deleted file mode 100644 index 83f7963b..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(_:)-9s5vo.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeLocations:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/removefromlocations(_:)-9s5vo"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(_:)-9s5vo","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromLocations(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)removeLocations:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/removeFromLocations(_:)-9s5vo":{"role":"symbol","title":"removeFromLocations(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"NSOrderedSet","preciseIdentifier":"c:objc(cs)NSOrderedSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(_:)-9s5vo","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/removefromlocations(_:)-9s5vo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(at:)-7pewh.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(at:)-7pewh.json deleted file mode 100644 index f637ed58..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(at:)-7pewh.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeObjectFromLocationsAtIndex:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"idx"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/removefromlocations(at:)-7pewh"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(at:)-7pewh","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromLocations(at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)removeObjectFromLocationsAtIndex:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/removeFromLocations(at:)-7pewh":{"role":"symbol","title":"removeFromLocations(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(at:)-7pewh","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/removefromlocations(at:)-7pewh"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(at:)-geei.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(at:)-geei.json deleted file mode 100644 index 95e6ece3..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/removefromlocations(at:)-geei.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(removeLocationsAtIndexes:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"indexes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/removefromlocations(at:)-geei"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(at:)-geei","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"removeFromLocations(at:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)removeLocationsAtIndexes:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/removeFromLocations(at:)-geei":{"role":"symbol","title":"removeFromLocations(at:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removeFromLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/removeFromLocations(at:)-geei","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/removefromlocations(at:)-geei"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/replacelocations(at:with:)-28ojw.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/replacelocations(at:with:)-28ojw.json deleted file mode 100644 index 20c9d19a..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/replacelocations(at:with:)-28ojw.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(replaceObjectInLocationsAtIndex:withObject:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"idx"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/replacelocations(at:with:)-28ojw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/replaceLocations(at:with:)-28ojw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"replaceLocations(at:with:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":")"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)replaceObjectInLocationsAtIndex:withObject:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/replaceLocations(at:with:)-28ojw":{"role":"symbol","title":"replaceLocations(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/replaceLocations(at:with:)-28ojw","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/replacelocations(at:with:)-28ojw"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/replacelocations(at:with:)-9m8a9.json b/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/replacelocations(at:with:)-9m8a9.json deleted file mode 100644 index b0241ebd..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/trackmo/replacelocations(at:with:)-9m8a9.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@objc"},{"kind":"text","text":"(replaceLocationsAtIndexes:withLocations:) "},{"kind":"attribute","text":"@NSManaged"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":" "},{"kind":"internalParam","text":"indexes"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"kind":"internalParam","text":"values"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO","text":"GeoLocationMO"},{"kind":"text","text":"])"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/trackmo\/replacelocations(at:with:)-9m8a9"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/replaceLocations(at:with:)-9m8a9","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"No overview available."}],"kind":"symbol","metadata":{"role":"symbol","title":"replaceLocations(at:with:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":"])"}],"symbolKind":"method","externalID":"c:@CM@DataCapturing@objc(cs)TrackMO(im)replaceLocationsAtIndexes:withLocations:","extendedModule":"DataCapturing","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO":{"role":"symbol","title":"TrackMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"TrackMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"TrackMO"}],"url":"\/documentation\/datacapturing\/trackmo"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/TrackMO/replaceLocations(at:with:)-9m8a9":{"role":"symbol","title":"replaceLocations(at:with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceLocations"},{"kind":"text","text":"("},{"kind":"externalParam","text":"at"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"NSIndexSet","preciseIdentifier":"c:objc(cs)NSIndexSet"},{"kind":"text","text":", "},{"kind":"externalParam","text":"with"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"GeoLocationMO","preciseIdentifier":"c:@M@DataCapturing@objc(cs)GeoLocationMO"},{"kind":"text","text":"])"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/TrackMO\/replaceLocations(at:with:)-9m8a9","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/trackmo\/replacelocations(at:with:)-9m8a9"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/GeoLocationMO":{"role":"symbol","title":"GeoLocationMO","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"GeoLocationMO"}],"abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/GeoLocationMO","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"GeoLocationMO"}],"url":"\/documentation\/datacapturing\/geolocationmo"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/uploadprocess.json b/DataCapturing.doccarchive/data/documentation/datacapturing/uploadprocess.json deleted file mode 100644 index c41bed62..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/uploadprocess.json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadProcess"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"content","content":[{"anchor":"overview","level":2,"type":"heading","text":"Overview"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Klemens Muthmann"}]}],"type":"aside","name":"Author"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"1.0.0"}]}],"type":"aside","name":"Version"}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/uploadprocess"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"A state machine for the complete upload process of a single measurement from this device to a Cyface Data Collector service."}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadProcess"}],"title":"UploadProcess","roleHeading":"Class","role":"symbol","symbolKind":"class","externalID":"s:13DataCapturing13UploadProcessC","modules":[{"name":"DataCapturing"}],"navigatorTitle":[{"kind":"identifier","text":"UploadProcess"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing"]]},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess\/init(apiUrl:session:sessionRegistry:authenticator:onSuccess:onFailure:)"]}],"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/UploadProcess":{"role":"symbol","title":"UploadProcess","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadProcess"}],"abstract":[{"type":"text","text":"A state machine for the complete upload process of a single measurement from this device to a Cyface Data Collector service."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadProcess"}],"url":"\/documentation\/datacapturing\/uploadprocess"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/UploadProcess/init(apiUrl:session:sessionRegistry:authenticator:onSuccess:onFailure:)":{"role":"symbol","title":"init(apiUrl:session:sessionRegistry:authenticator:onSuccess:onFailure:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Session","preciseIdentifier":"s:9Alamofire7SessionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"sessionRegistry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionRegistry","preciseIdentifier":"s:13DataCapturing15SessionRegistryV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"authenticator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Authenticator","preciseIdentifier":"s:13DataCapturing13AuthenticatorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Makes a new "},{"type":"codeVoice","code":"UploadProcess"},{"type":"text","text":" using the supplied properties."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess\/init(apiUrl:session:sessionRegistry:authenticator:onSuccess:onFailure:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/uploadprocess\/init(apiurl:session:sessionregistry:authenticator:onsuccess:onfailure:)"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/data/documentation/datacapturing/uploadprocess/init(apiurl:session:sessionregistry:authenticator:onsuccess:onfailure:).json b/DataCapturing.doccarchive/data/documentation/datacapturing/uploadprocess/init(apiurl:session:sessionregistry:authenticator:onsuccess:onfailure:).json deleted file mode 100644 index ee32eebf..00000000 --- a/DataCapturing.doccarchive/data/documentation/datacapturing/uploadprocess/init(apiurl:session:sessionregistry:authenticator:onsuccess:onfailure:).json +++ /dev/null @@ -1 +0,0 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Session","preciseIdentifier":"s:9Alamofire7SessionC"},{"kind":"text","text":" = AF, "},{"kind":"externalParam","text":"sessionRegistry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry","preciseIdentifier":"s:13DataCapturing15SessionRegistryV","text":"SessionRegistry"},{"kind":"text","text":", "},{"kind":"externalParam","text":"authenticator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","preciseIdentifier":"s:13DataCapturing13AuthenticatorP","text":"Authenticator"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": "},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": "},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["iOS"]}]},{"kind":"parameters","parameters":[{"name":"session","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"An optional Alamofire "},{"type":"codeVoice","code":"Session"},{"type":"text","text":". Use this to inject a session, for example for mocking. If not used the standard Alamofire "},{"type":"codeVoice","code":"Session"},{"type":"text","text":" is used, which should be fine for most use cases."}]}]},{"name":"sessionRegistry","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"You may reuse some "},{"type":"codeVoice","code":"SessionRegistry"},{"type":"text","text":" here or provide one backed by persistent storage. If the sessions are not stored somewhere nothing bad will happen, except from a few unecessary uploads, which could have been resumed."}]}]},{"name":"onSuccess","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Called on succeful completion of the process. Provides the uploaded measurements device wide unique identifier as a parameter."}]}]},{"name":"onFailure","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Called on failed upload process. Provides the measurements device wide unique identifier of the measurement, that failed to upload, together with the error information."}]}]}]}],"schemaVersion":{"major":0,"minor":2,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/datacapturing\/uploadprocess\/init(apiurl:session:sessionregistry:authenticator:onsuccess:onfailure:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess\/init(apiUrl:session:sessionRegistry:authenticator:onSuccess:onFailure:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Makes a new "},{"type":"codeVoice","code":"UploadProcess"},{"type":"text","text":" using the supplied properties."}],"kind":"symbol","metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Session","preciseIdentifier":"s:9Alamofire7SessionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"sessionRegistry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionRegistry","preciseIdentifier":"s:13DataCapturing15SessionRegistryV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"authenticator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Authenticator","preciseIdentifier":"s:13DataCapturing13AuthenticatorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"title":"init(apiUrl:session:sessionRegistry:authenticator:onSuccess:onFailure:)","roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:13DataCapturing13UploadProcessC6apiUrl7session0G8Registry13authenticator9onSuccess0J7FailureAC10Foundation3URLV_9Alamofire7SessionCAA0pH0VAA13Authenticator_pys6UInt64VcyAT_s5Error_ptctcfc","modules":[{"name":"DataCapturing"}]},"hierarchy":{"paths":[["doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess"]]},"references":{"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/SessionRegistry":{"role":"symbol","title":"SessionRegistry","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"SessionRegistry"}],"abstract":[{"type":"text","text":"Stores the open sessions, this app knows about."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/SessionRegistry","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"SessionRegistry"}],"url":"\/documentation\/datacapturing\/sessionregistry"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/Authenticator":{"role":"symbol","title":"Authenticator","fragments":[{"kind":"keyword","text":"protocol"},{"kind":"text","text":" "},{"kind":"identifier","text":"Authenticator"}],"abstract":[{"type":"text","text":"An "},{"type":"codeVoice","code":"Authenticator"},{"type":"text","text":" provides functionality to authenticate this app on a servoer for receiving the captured data."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/Authenticator","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"Authenticator"}],"url":"\/documentation\/datacapturing\/authenticator"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing":{"role":"collection","title":"DataCapturing","abstract":[],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/UploadProcess/init(apiUrl:session:sessionRegistry:authenticator:onSuccess:onFailure:)":{"role":"symbol","title":"init(apiUrl:session:sessionRegistry:authenticator:onSuccess:onFailure:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiUrl"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"session"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Session","preciseIdentifier":"s:9Alamofire7SessionC"},{"kind":"text","text":", "},{"kind":"externalParam","text":"sessionRegistry"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SessionRegistry","preciseIdentifier":"s:13DataCapturing15SessionRegistryV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"authenticator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Authenticator","preciseIdentifier":"s:13DataCapturing13AuthenticatorP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onSuccess"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onFailure"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Makes a new "},{"type":"codeVoice","code":"UploadProcess"},{"type":"text","text":" using the supplied properties."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess\/init(apiUrl:session:sessionRegistry:authenticator:onSuccess:onFailure:)","kind":"symbol","type":"topic","url":"\/documentation\/datacapturing\/uploadprocess\/init(apiurl:session:sessionregistry:authenticator:onsuccess:onfailure:)"},"doc://org.cocoapods.DataCapturing/documentation/DataCapturing/UploadProcess":{"role":"symbol","title":"UploadProcess","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"UploadProcess"}],"abstract":[{"type":"text","text":"A state machine for the complete upload process of a single measurement from this device to a Cyface Data Collector service."}],"identifier":"doc:\/\/org.cocoapods.DataCapturing\/documentation\/DataCapturing\/UploadProcess","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"UploadProcess"}],"url":"\/documentation\/datacapturing\/uploadprocess"}}} \ No newline at end of file diff --git a/DataCapturing.doccarchive/favicon.ico b/DataCapturing.doccarchive/favicon.ico deleted file mode 100644 index 5231da6d..00000000 Binary files a/DataCapturing.doccarchive/favicon.ico and /dev/null differ diff --git a/DataCapturing.doccarchive/favicon.svg b/DataCapturing.doccarchive/favicon.svg deleted file mode 100644 index c54c53fb..00000000 --- a/DataCapturing.doccarchive/favicon.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - \ No newline at end of file diff --git a/DataCapturing.doccarchive/img/added-icon.d6f7e47d.svg b/DataCapturing.doccarchive/img/added-icon.d6f7e47d.svg deleted file mode 100644 index 6bb6d89a..00000000 --- a/DataCapturing.doccarchive/img/added-icon.d6f7e47d.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - \ No newline at end of file diff --git a/DataCapturing.doccarchive/img/deprecated-icon.015b4f17.svg b/DataCapturing.doccarchive/img/deprecated-icon.015b4f17.svg deleted file mode 100644 index a0f80086..00000000 --- a/DataCapturing.doccarchive/img/deprecated-icon.015b4f17.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - \ No newline at end of file diff --git a/DataCapturing.doccarchive/img/modified-icon.f496e73d.svg b/DataCapturing.doccarchive/img/modified-icon.f496e73d.svg deleted file mode 100644 index 3e0bd6f0..00000000 --- a/DataCapturing.doccarchive/img/modified-icon.f496e73d.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - \ No newline at end of file diff --git a/DataCapturing.doccarchive/index.html b/DataCapturing.doccarchive/index.html deleted file mode 100644 index bc8f6e29..00000000 --- a/DataCapturing.doccarchive/index.html +++ /dev/null @@ -1,11 +0,0 @@ - - -
Please turn on JavaScript in your browser and refresh the page to view its content.