RxAndroid: Reactive Extensions for Android. Android specific bindings for RxJava 3. This module adds the minimum classes to RxJava that make writing reactive components in Android applications easy and hassle-free. More specifically, it provides a Scheduler that schedules on the main thread or any given Looper. Additional binaries and dependency information for can be found at search.maven.org. One of the most common operations when dealing with asynchronous tasks on Android is to observe the task's result or outcome on the main thread. Using vanilla Android, this would typically be accomplished with an AsyncTask. With RxJava instead you would declare your Observable to be observed on the main thread.
Features
- Android specific bindings for RxJava 3
- Makes writing reactive components in Android applications easy
- Provides a Scheduler on the main thread
- You can observe the task's result or outcome on the main thread
- Module that adds components and classes to RxJava