google / android-fhir

The Android FHIR SDK is a set of Kotlin libraries for building offline-capable, mobile-first healthcare applications using the HL7® FHIR® standard on Android.
https://google.github.io/android-fhir/
Apache License 2.0
458 stars 238 forks source link

Resource creation using AllChangesSquashedBundlePost upload strategy. #2509

Open santosh-pingle opened 1 month ago

santosh-pingle commented 1 month ago

IMPORTANT: All PRs must be linked to an issue (except for extremely trivial and straightforward changes).

Fixes #2499

Description The resource is created locally, and the AllChangesSquashedBundlePost is used to synchronize the resource with the FHIR server. In return, the server sends a response containing the resource metadata and the newly assigned resource ID as BundleEntryComponent in the Bundle. Subsequently, the local database is updated with the provided resource.

Upload strategy : AllChangesSquashedBundlePost Discard the local changes from LocalChangeEntity table. Update the resource with the received resourceId and meta data in the local database. Update the resource with the received reference id in the local database.

Note: This change does not handle resource consolidation if multiple bundles are sent in the upload request to create resources at the server.

Alternative(s) considered Have you considered any alternatives? And if so, why have you chosen the approach in this PR?

Type Choose one: Feature

Screenshots (if applicable)

Checklist