Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Rxjava2 Android Samples | 4,977 | 2 months ago | 18 | apache-2.0 | Java | |||||
RxJava 2 Android Examples - How to use RxJava 2 in Android | ||||||||||
Kotlin Tutorials | 3,711 | 2 years ago | Kotlin | |||||||
【Kotlin 视频教程】国内资料较少,我录制了一套视频作为抛砖引玉~ | ||||||||||
Intro To Rxjava | 2,005 | 3 years ago | 24 | Java | ||||||
An extensive tutorial on RxJava | ||||||||||
Effective Rxjava | 559 | 6 years ago | 1 | cc-by-4.0 | ||||||
Effective RxJava | ||||||||||
Avenging | 280 | a year ago | 6 | apache-2.0 | Java | |||||
MVP pattern example on Android: no Dagger or RxJava example | ||||||||||
Coroutinerecipes | 253 | 8 months ago | 1 | apache-2.0 | Kotlin | |||||
Playground for Kotlin Coroutines. Basics, Channels, Flows, useful examples & comparison to RxJava. | ||||||||||
Rxkotlin Rxjava2 Android Samples | 66 | 5 years ago | n,ull | Kotlin | ||||||
Learning RxKotlin2 for Android by Examples - Migration From RxKotlin1/RxJava1 to RxKotlin2/RxJava2 - How to use RxKotlin 2 in Android - RxLogin using RxBinding - Pagination using RxKotlin | ||||||||||
Rxandroid2 Retrofit2 | 53 | 6 years ago | 1 | Java | ||||||
Small tutorial to get started with RxAndroid 2 and Retrofit 2 | ||||||||||
Githubrxjava | 49 | 6 years ago | 3 | Java | ||||||
Interacting with the GitHub API using Retrofit + RxJava | ||||||||||
Rxjava Codelab | 34 | 3 years ago | Java | |||||||
Codelab project for demonstration of RxJava features |
Hi, I am Amit Shekhar, I have mentored many developers, and their efforts landed them high-paying tech jobs, helped many tech companies in solving their unique problems, and created many open-source libraries being used by top companies. I am passionate about sharing knowledge through open-source, blogs, and videos.
You can connect with me on:
RxJava 2.0 has been completely rewritten from scratch on top of the Reactive-Streams specification. The specification itself has evolved out of RxJava 1.x and provides a common baseline for reactive systems and libraries.
Add this in your build.gradle
compile 'io.reactivex.rxjava2:rxjava:X.X.X'
If you are using RxAndroid also, then add the following
compile 'io.reactivex.rxjava2:rxandroid:X.X.X'
Map
-> transform the items emitted by an Observable by applying a function to each item. Blog: RxJava Operator Map vs FlatMap
Zip
-> combine the emissions of multiple Observables together via a specified function and emit single items for each combination based on the results of this functionFilter
-> emit only those items from an Observable that pass a predicate testFlatMap
-> transform the items emitted by an Observable into Observables, then flatten the emissions from those into a single Observable. Blog: RxJava Operator Map vs FlatMap
Take
-> emit only the first n items emitted by an Observable. Blog for reference
Reduce
-> apply a function to each item emitted by an Observable, sequentially, and emit the final valueSkip
-> suppress the first n items emitted by an ObservableBuffer
-> periodically gather items emitted by an Observable into bundles and emit these bundles rather than emitting the items one at a timeConcat
-> emit the emissions from two or more Observables without interleaving them. Blog for reference
Replay
-> ensure that all observers see the same sequence of emitted items, even if they subscribe after the Observable has begun emitting itemsMerge
-> combine multiple Observables into one by merging their emissionsSwitchMap
-> transform the items emitted by an Observable into Observables, and mirror those items emitted by the most-recently transformed ObservableCompositeDisposable
. Blog for reference
Flowable
and reduce
operatorSingleObserver
CompletableObserver
map
Operator. Blog: RxJava Operator Map vs FlatMap
zip
Operatorbuffer
Operatortake
Operator. Blog for reference
reduce
Operatorfilter
Operatorskip
Operatorreplay
Operatorconcat
Operator. Blog for reference
merge
Operatordefer
ObservableswitchMap
ObservableInterval
. Blog for reference
debounce
, switchMap
, distinctUntilChanged
concat
, firstElement
Thanks
You can connect with me on:
Copyright (C) 2022 Amit Shekhar
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 at
http://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.
Just make pull request. You are in!