https://github.com/zhuinden/livedata-combineutil-java
[ACTIVE] Helper function to combine LiveDatas.
https://github.com/zhuinden/livedata-combineutil-java
Last synced: about 2 months ago
JSON representation
[ACTIVE] Helper function to combine LiveDatas.
- Host: GitHub
- URL: https://github.com/zhuinden/livedata-combineutil-java
- Owner: Zhuinden
- License: apache-2.0
- Created: 2021-01-05T06:28:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-26T14:22:02.000Z (almost 4 years ago)
- Last Synced: 2025-04-01T15:41:04.957Z (2 months ago)
- Language: Java
- Size: 66.4 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# LiveData-CombineUtil-Java
LiveData-CombineUtil-Java contains helper functions for LiveData, to combine their latest emissions.
``` java
import static com.zhuinden.livedatacombineutiljava.LiveDataCombineUtil.*;combine(liveData1, liveData2, liveData3, (t1, t2, t3) -> {
// map to something
}).observe(viewLifecycleOwner, (mapped) -> {
// do something with mapped values
});
```## Why?
It's useful when you want to combine multiple reactive streams together and get a combined object of the latest values.
## Using LiveData-CombineUtil-Java
In order to use LiveData-CombineUtil-Java, you need to add `jitpack` to your project root `build.gradle.kts`
(or `build.gradle`):``` kotlin
// build.gradle.kts
allprojects {
repositories {
// ...
maven { setUrl("https://jitpack.io") }
}
// ...
}
```or
``` groovy
// build.gradle
allprojects {
repositories {
// ...
maven { url "https://jitpack.io" }
}
// ...
}
```In newer projects, you need to also update the `settings.gradle` file's `dependencyResolutionManagement` block:
```
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' } // <--
jcenter() // Warning: this repository is going to shut down soon
}
}
```and then, add the dependency to your module's `build.gradle.kts` (or `build.gradle`):
``` kotlin
// build.gradle.kts
implementation("com.github.Zhuinden:livedata-combineutil-java:1.0.0")
```or
``` groovy
// build.gradle
implementation 'com.github.Zhuinden:livedata-combineutil-java:1.0.0'
```## License
Copyright 2021 Gabor Varadi
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.