Sample app using RxJava, RxAndroid and gradle-retrolambda for Java 8 Lambda support
How to create an Observer
and Subscription
.
Source code includes examples of using Java 6 compatible code and code using Java 8 lambdas.
Same as Hello World example, however, it shows how to retain subscription through the activity lifecycle.
Shows how to use operators to transform data after it is emitted by the Observer and before it's received by a Subscription.
Shows how to use flatMap
to simplify code.
Operators can be used to filter emitted data. Meaning, certain emitted data will not be propogated to the Subscriber.
Shows how to create custom operators and bind events on views.