When to use RxJava in Android and when to use LiveData from Android Architectural Components?

AndroidRx Java2Rx AndroidReactiveAndroid Architecture-Components

Android Problem Overview


I am not getting the reason to use RxJava in Android and LiveData from Android Architectural Components.It would be really helpful if the usecases and differences between the both are explained along with sample example in the form of code which explains the differences between the both.

Android Solutions


Solution 1 - Android

Regarding the original question, both RxJava and LiveData complement each other really well.

LiveData shines on ViewModel layer, with its tight integration with Android lifecycles and ViewModel. RxJava provides more capabilities in transformations (as mentioned by @Bob Dalgleish).

Currently, we're using RxJava in data source and repository layers, and it's transformed into LiveData (using LiveDataReactiveStreams) in ViewModels (before exposing data to activities/fragments) - quite happy with this approach.

Solution 2 - Android

Android LiveData is a variant of the original observer pattern, with the addition of active/inactive transitions. As such, it is very restrictive in its scope.

Using the example described in Android LiveData, a class is created to monitor location data, and register and unregister based on application state.

RxJava provides operators that are much more generalized. Let's assume that this observable will provide location data:

Observable<LocationData> locationObservable;

The implementation of the observable can be built up using Observable.create() to map the call back operations. When the observable is subscribed, the call back is registered, and when it is unsubscribed, the call back is unregistered. The implementation looks very similar to the code provided in the example.

Let's also assume that you have an observable that emits true when the application is active:

Observable<Boolean> isActive;

Then you can provide all the functionality of LiveData by the following

Observable<LocationData> liveLocation =
  isActive
    .switchMap( active -> active ? locationObservable : Observable.never() );

The switchMap() operator will either provide the current location as a stream, or nothing if the application is not active. Once you have the liveLocation observable, there a lot of things you can do with it using RxJava operators. My favorite example is:

liveLocation.distinctUntilChanged()
  .filter( location -> isLocationInAreaOfInterest( location ) )
  .subscribe( location -> doSomethingWithNewLocation( location ) );

That will only perform the action when the location changed, and the location is interesting. You can create similar operations that combine time operators to determine speed. More importantly, you can provide detailed control of whether operations happen in the main thread, or a background thread, or a multiple threads, using RxJava operators.

The point of RxJava is that it combines control and timing into a single universe, using operations provided from the library, or even custom operations that you provide.

LiveData addresses only one small part of that universe, the equivalent of building the liveLocation.

Solution 3 - Android

There are many differences between LiveData and RxJava:

  1. LiveData is not a STREAM while in RxJava everything (literally everything) is a STREAM.
  2. LiveData is an observable data holder class. Unlike a regular observable, LiveData is lifecycle-aware, meaning it respects the lifecycle of other app components, such as activities, fragments, or services. This awareness ensures LiveData only updates app component observers that are in an active lifecycle state.
  3. LiveData is synchronous, So you can't execute a chunk of code (network call, database manipulation etc.) asynchronously using just LiveData as you do with RxJava.
  4. What best you can do to exploit the most of this duo is to use RxJava for your business logic (network call, data manipulation etc, anything that happens in and beyond Repository) and use LiveData for your presentation layer. By this, you get transformation and stream capabilities for your business logic and lifecycle-aware operation for your UI.
  5. LiveData and RxJava compliment each other if used together. What I mean is, do everything with RxJava and at the end when you want to update UI, do something like the code given below to change your Observable into LiveData. So, your View (UI) observes to the LiveData in ViewModel where your LiveData is nothing but non-mutable MutableLiveData (or MutableLiveData is mutable LiveData).
  6. So the question here is, why should you even use LiveData at the first place? As you can see below in the code, you store your response from RxJava to MutableLiveData (or LiveData) and your LiveData is lifecycle-aware, so in a way, your data is lifecycle-aware. Now, just imagine the possibility when your data itself know when and when-not-to update the UI.
  7. LiveData doesn't have a history (just the current state). Hence, you shouldn't use LiveData for a chat application.
  8. When you use LiveData with RxJava you don't need stuff like MediatorLiveData, SwitchMap etc. They are stream control tools and RxJava is better at that by many times.
  9. See LiveData as a data holder thing and nothing else. We can also say LiveData is lifecycle-aware consumer.

	public class RegistrationViewModel extends ViewModel {
        Disposable disposable;

		private RegistrationRepo registrationRepo;
		private MutableLiveData<RegistrationResponse> modelMutableLiveData =
				new MutableLiveData<>();

		public RegistrationViewModel() {
		}

		public RegistrationViewModel(RegistrationRepo registrationRepo) {
			this.registrationRepo = registrationRepo;
		}

		public void init(RegistrationModel registrationModel) {
			disposable = registrationRepo.loginForUser(registrationModel)
					.subscribeOn(Schedulers.io())
					.observeOn(AndroidSchedulers.mainThread())
					.subscribe(new Consumer<Response<RegistrationResponse>>() {
						@Override
						public void accept(Response<RegistrationResponse>
								                   registrationModelResponse) throws Exception {

							modelMutableLiveData.setValue(registrationModelResponse.body());
						}
					});
		}

		public LiveData<RegistrationResponse> getModelLiveData() {
			return modelMutableLiveData;
		}

       @Override
       protected void onCleared() {
                super.onCleared();
            disposable.dispose();
         }
	}

Solution 4 - Android

In fact, LiveData is not an essentially different tool to RxJava , so why was it introduced as an architecture component when RxJava could have easily managed the lifecycle by storing all the subscriptions to observables in a CompositeDispoable object and then disposing them in onDestroy() of the Activity or onDestroyView() of the Fragment using only one line of code?

I have answered to this question fully by building a movie search app once using RxJava and then using LiveData here.

But in short, yes, it could, but that would need first overriding the relevant lifecycle methods besides having the basic lifecycle knowledge. This still might not make sense for some, but the fact is that according to one of the Jetpack sessions in Google I/O 2018 many developers find lifecycle management complex. The crash errors arising from not handling lifecycle dependence might be another sign that some developers, even if knowledgable of lifecycle, forget to take care of that in every Activity / Fragment they use in their app. In large apps this could become an issue, notwithstanding the negative effect it could have on productivity.

The bottom line is that by introducing LiveData , larger number of developers are expected to adopt MVVM without even having to understand the lifecycle management, memory leak and crash. Even though I have no doubt that LiveData is not comparable with RxJava in terms of capabilities and the power it gives to developers, reactive programming and RxJava is a hard-to-understand concept and tool for many. On the other side, I do not think LiveData is meant to be a replacement for RxJava–it simply cannot–but a very simple tool for handling a controversial widespread issue experienced by many developers.

** UPDATE ** I have added a new article here where I have explained how misusing LiveData can lead to unexpected results. RxJava can come to rescue in these situations


Solution 5 - Android

As you may know in the reactive ecosystem we have an Observable that emits data and an Observer that subscribes( get notified) of this Observable emission, nothing strange is how works the so called Observer Pattern. An Observable "shouts"something, the Observer get notified that Observable shout something in a given moment.

Think to LiveData as an Observable that allows you to manage the Observers that are in an active state. In other terms LiveData is a simple Observable but also takes care of the life cycle.

But let's see the two code cases you request:

A) Live Data

B) RXJava

A)This is a basic implementation of LiveData

  1. you usually instantiate LiveData in the ViewModel to maintain orientation change (you can have LiveData that is read only, or MutableLiveData that is writable, so you usually expose outside from the class LiveData)

  2. in the OnCreate method of the Main Activity(not the ViewModel) you "subscribe" an Observer object (usually an a onChanged method)

  3. you launch the method observe to establish the link

First the ViewModel (owns the business logic)

class ViewModel : ViewModel() { //Point 1

    var liveData: MutableLiveData<Int> = MutableLiveData()

}

And this is the MainActivity( as dumb as possible)

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        val ViewModelProvider= ViewModelProviders.of(this).get(ViewModel::class.java)

        ViewModelProvider.observe(this, Observer {//Points 2 and 3
            //what you want to observe
        })

        
        }
    }
}

B)This is the basic implementation of RXJava

  1. you declare an Observable

  2. you declare an Observer

  3. you subscribe the Observable with the Observer

    Observable.just(1, 2, 3, 4, 5, 6) // Point 1

    .subscribe(new Subscriber() {    //Points 2 & 3
        @Override
        public void onCompleted() {
            System.out.println("Complete!");
        }
    
        @Override
        public void onError(Throwable e) {
        }
    
        @Override
        public void onNext(Double value) {
            System.out.println("onNext: " + value);
        }
     });
    

In particular LiveData is used with Lifecycle and often with ViewModel(as we have seen) architecture components. In fact when LiveData is combined with a ViewModel allows you to keep updated in real time every change in the Observer, so that the events are managed in real time where is needed. To use LiveData is strongly recommended to know the concept of lifecycle and the relative objects LifeCycleOwner/LifeCycle, also I would suggest you to have a look at Transformations, if you want to implement LiveData in real life scenarios. Here you can find some use cases from the great commonsware.

To wrap up basically LiveData is a simplified RXJava, an elegant way to observe changes across multiple components without creating explicit so called dependency rules between the components, so that you can test much easier the code and make it much more readable. RXJava, allows you to do the things of LiveData and much more. Because of the extended functionalities of RXJava, you can both use LiveData for simple cases or exploit all the power of RXJava keep using Android Architecture components as the ViewModel, of course this means that RXJava can be far more complex, just think has hundreds of operators instead of SwitchMap and Map of LiveData(at the moment).

RXJava version 2 is a library that revolutionized the Object Oriented paradigm, adding a so called functional way to manage the flow of the program.

Solution 6 - Android

LiveData is a subset of the android architecture components which is developed by the android team.

With the live data and other architecture components, memory leaks and other similar issues are handled by architecture components. Since it is developed by android team, it is the best for android. They also provide updates that handle new versions of Android.

If you only want to use in Android app development, go for the Android architecture components. Otherwise, if you want to use other Java app, like web app, desktop apps, etc., use RxJava

Solution 7 - Android

LiveData as a data holder thing and nothing else. We can also say LiveData is Lifecycle aware consumer. LiveData is strongly recommended to know the concept of lifecycle and the relative objects LifeCycleOwner/LifeCycle, you get transformation and stream capabilities for your business logic and lifecycle aware operation for your UI.

Rx is powerful tool that enables to solve of problem in an elegant declarative style. It handles business side options or Service Api operations

Solution 8 - Android

  • LiveData partially equals to Rx Subject or SharedRxObservable

  • LiveData manages lifecycle of subscription but Rx Subject subscription should be created and disposed manually

  • LiveData doesn't have termination state but Rx Subject has OnError and OnCompleted

Solution 9 - Android

Comparing LiveData to RxJava is comparing apples with fruit salads.

Compare LiveData to ContentObserver and you are comparing apples with apples. LiveData effectively being a lifecycle-aware replacement for ContentObserver.

Comparing RxJava to AsyncTask or any other threading tool is comparing fruit salads to oranges, because RxJava helps with more than just threading.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionrahul66View Question on Stackoverflow
Solution 1 - AndroidkzotinView Answer on Stackoverflow
Solution 2 - AndroidBob DalgleishView Answer on Stackoverflow
Solution 3 - AndroidAbhishek KumarView Answer on Stackoverflow
Solution 4 - AndroidAli NemView Answer on Stackoverflow
Solution 5 - AndroidtrocchiettoView Answer on Stackoverflow
Solution 6 - AndroidSIVAKUMAR.JView Answer on Stackoverflow
Solution 7 - AndroidAttifView Answer on Stackoverflow
Solution 8 - AndroidSergey MView Answer on Stackoverflow
Solution 9 - AndroidstrayaView Answer on Stackoverflow