Slide 68
Slide 68 text
Function
composableFunctions
Transform: map, flatmap, reduce, Scan ...
Filter: take, skip, sample, takewhile, filter ...
Combine: concat, merge, zip, combinelatest,
multicast, publish, cache, refcount ...
Concurrency: observeon, subscribeon
Error Handling: onErrorreturn, onErrorResume ...
68
This is a list of some of the higher-order functions that Rx supports. More can be found in the documentation (https://github.com/Netflix/RxJava/wiki) and many more from the original
Rx.Net implementation have not yet been implemented in RxJava (but are all listed on the RxJava Github issues page tracking the progress).
We will look at some of the important ones for combining and transforming data as well as handling errors asynchronously.