RxJava: Difference between revisions
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
=Introduction= | =Introduction= | ||
These are notes on RxJava which I have used with Android/Kotlin. To use with Android at the time you specify the following | These are notes on RxJava which I have used with Android/Kotlin. To use with Android at the time you specify the following | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="groovey"> | ||
dependencies { | |||
... | |||
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0' | implementation 'io.reactivex.rxjava3:rxandroid:3.0.0' | ||
implementation 'io.reactivex.rxjava3:rxjava:3.0.13' | implementation 'io.reactivex.rxjava3:rxjava:3.0.13' | ||
... | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==Completable== | ==Completable== |
Revision as of 04:20, 10 February 2022
Introduction
These are notes on RxJava which I have used with Android/Kotlin. To use with Android at the time you specify the following
dependencies {
...
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
implementation 'io.reactivex.rxjava3:rxjava:3.0.13'
...
}
Completable
Because we are using java we have 3 types of observables,
- Completables
- Singles
- Maybes
This restricts the functions we need to implement.