This is a collection of samples demonstrating the use of operators in RxJava 2.0 and RxKotlin.
To contribute, please check the wiki
Here's the list of operators that have been finished
Operator | RxJava 2.x | RxKotlin |
---|---|---|
Create | create, generate, unsafeCreate | create |
Defer | defer | defer |
Empty/Never/Throw | empty, never, error | empty, never , error |
From | from | from |
Interval | interval | interval |
Just | just | |
Range | range | |
Repeat | repeat | |
Timer | timer | timer |
Operator | RxJava 2.x | RxKotlin |
---|---|---|
Map | map | map |
Buffer | buffer | |
FlatMap | concatMap flatMap switchMap | |
GroupBy | groupBy |
TODO
TODO
TODO
Operator | RxJava 2.x | RxKotlin |
---|---|---|
Delay | delay, delaySubscription | delay, delaySubscription |
Timestamp | timestamp | timestamp |
SubscribeOn | subscribeOn | subscribeOn |
ObserveOn | observeOn | observeOn |
TODO
TODO
TODO
TODO
TODO