commit | bc9a113eee26d1a599153e15ebec5c233f609261 | [log] [tgz] |
---|---|---|
author | Daniel Santiago Rivera <[email protected]> | Wed Sep 11 09:52:35 2024 -0400 |
committer | Daniel Santiago Rivera <[email protected]> | Wed Sep 11 11:33:45 2024 -0400 |
tree | 058570596e176a7d97e6815a4ada8aa2e2618c1d | |
parent | e5199198b89ea88e3f142efadf8179f6a0d47ebf [diff] |
Commonize InvalidationTracker Flow API This changes bring the extension function invalidationTrackerFlow() to the InvalidationTracker as createFlow() and evolves it to be the first-party API for tracking database invalidation in Kotlin Multiplatform. The code gen utility function FlowBuilder.createFlow() and the extension function invalidationTrackerFlow() are migrated to use the new API. All InvalidationTracker.Observer APIs that where commonized are moved to the Android source set, to continue keeping backwards compatibility in Android and no longer provide the callback-based APIs for KMP. LimitOffsetPagingSource was updated to use the Flow API since Observers are no longer available in common code. The internal API to check for invalidation synchronously was updated to return a boolean if interested tables where invalidated, this is needed to better guaranteed invalidation of page source. Tests are also updated to filter out a named Coroutine, a strategy that is less brittle than filtering runnable based on function names. The implementation uses a MutableStateFlow of an array of ever incrementing table versions. The actual version value are not persisted and don't even correspond to individual table modification. They can be considered as a counter of times the table has been invalidated since the instantiation of the InvalidationTracker. Observing flows keep a reference to the latest versions and as they receive new versions they check if any of the interested tables have change in count, an indicator that the flow must emit. This reverts commit d439acd98c40eb883195431d0320bead0780dc46. Bug: 261205680 Bug: 287085166 Bug: 287366097 Bug: 287477564 Bug: 287517337 Bug: 312434479 Bug: 329291639 Bug: 329315924 Test: Existing Relnote: "Commonize invalidationTrackerFlow() as a first-party API in InvalidationTracker and make it available for non-Android source sets in KMP projects." Change-Id: I1fbfa9a45041f774eb08ee9d6457a2cde6a236a1
Jetpack is a suite of libraries, tools, and guidance to help developers write high-quality apps easier. These components help you follow best practices, free you from writing boilerplate code, and simplify complex tasks, so you can focus on the code you care about.
Jetpack comprises the androidx.*
package libraries, unbundled from the platform APIs. This means that it offers backward compatibility and is updated more frequently than the Android platform, making sure you always have access to the latest and greatest versions of the Jetpack components.
Our official AARs and JARs binaries are distributed through Google Maven.
You can learn more about using it from Android Jetpack landing page.
For contributions via GitHub, see the GitHub Contribution Guide.
Note: The contributions workflow via GitHub is currently experimental - only contributions to the following projects are being accepted at this time:
When contributing to Jetpack, follow the code review etiquette.
We are not currently accepting new modules.
Head over to the onboarding docs to learn more about getting set up and the development workflow!
Our continuous integration system builds all in progress (and potentially unstable) libraries as new changes are merged. You can manually download these AARs and JARs for your experimentation.
Before uploading your first contribution, you will need setup a password and agree to the contribution agreement:
Generate a HTTPS password: https://android-review.googlesource.com/new-password
Agree to the Google Contributor Licenses Agreement: https://android-review.googlesource.com/settings/new-agreement
AndroidX uses git to store all the binary Gradle dependencies. They are stored in prebuilts/androidx/internal
and prebuilts/androidx/external
directories in your checkout. All the dependencies in these directories are also available from google()
, or mavenCentral()
. We store copies of these dependencies to have hermetic builds. You can pull in a new dependency using our importMaven tool.