MediatorLiveData

public class MediatorLiveData<T> extends MutableLiveData


LiveData subclass which may observe other LiveData objects and react on OnChanged events from them.

This class correctly propagates its active/inactive states down to source LiveData objects.

Consider the following scenario: we have 2 instances of LiveData, let's name them liveData1 and liveData2, and we want to merge their emissions in one MediatorLiveData object: liveDataMerger. Then, liveData1 and liveData2 will become sources for the liveDataMerger and every time onChanged callback is called for either of them, we set a new value in liveDataMerger.

LiveData<Integer> liveData1 = ...;
LiveData<Integer> liveData2 = ...;

MediatorLiveData<Integer> liveDataMerger = new MediatorLiveData<>();
liveDataMerger.addSource(liveData1, value -> liveDataMerger.setValue(value));
liveDataMerger.addSource(liveData2, value -> liveDataMerger.setValue(value));

Let's consider that we only want 10 values emitted by liveData1, to be merged in the liveDataMerger. Then, after 10 values, we can stop listening to liveData1 and remove it as a source.

liveDataMerger.addSource(liveData1, new Observer<Integer>() {
     private int count = 1;

     @Override public void onChanged(@Nullable Integer s) {
         count++;
         liveDataMerger.setValue(s);
         if (count > 10) {
             liveDataMerger.removeSource(liveData1);
         }
     }
});
Parameters
<T>

The type of data hold by this instance

Summary

Public constructors

Creates a MediatorLiveData with no value assigned to it.

Creates a MediatorLiveData initialized with the given value.

Public methods

void
@MainThread
<S> addSource(
    @NonNull LiveData<S> source,
    @NonNull Observer<Object> onChanged
)

Starts to listen to the given source LiveData, onChanged observer will be called when source value was changed.

void

Stops to listen the given LiveData.

Protected methods

void

Called when the number of active observers change from 0 to 1.

void

Called when the number of active observers change from 1 to 0.

Inherited methods

From androidx.lifecycle.LiveData
@Nullable T

Returns the current value.

boolean

Returns true if this LiveData has active observers.

boolean

Returns true if this LiveData has observers.

boolean

Returns whether an explicit value has been set on this LiveData.

void

Adds the given observer to the observers list within the lifespan of the given owner.

void

Adds the given observer to the observers list.

void

Removes the given observer from the observers list.

void

Removes all observers that are tied to the given LifecycleOwner.

From androidx.lifecycle.MutableLiveData
void
postValue(T value)

Posts a task to a main thread to set the given value.

void
setValue(T value)

Sets the value.

Public constructors

MediatorLiveData

Added in 2.0.0
public MediatorLiveData()

Creates a MediatorLiveData with no value assigned to it.

MediatorLiveData

Added in 2.6.0
public MediatorLiveData(T value)

Creates a MediatorLiveData initialized with the given value.

Parameters
T value

initial value

Public methods

addSource

@MainThread
public void <S> addSource(
    @NonNull LiveData<S> source,
    @NonNull Observer<Object> onChanged
)

Starts to listen to the given source LiveData, onChanged observer will be called when source value was changed.

onChanged callback will be called only when this MediatorLiveData is active.

If the given LiveData is already added as a source but with a different Observer, IllegalArgumentException will be thrown.

Parameters
<S>

The type of data hold by source LiveData

@NonNull LiveData<S> source

the LiveData to listen to

@NonNull Observer<Object> onChanged

The observer that will receive the events

removeSource

Added in 2.0.0
@MainThread
public void <S> removeSource(@NonNull LiveData<S> toRemote)

Stops to listen the given LiveData.

Parameters
<S>

the type of data hold by source LiveData

@NonNull LiveData<S> toRemote

LiveData to stop to listen

Protected methods

onActive

@CallSuper
protected void onActive()

Called when the number of active observers change from 0 to 1.

This callback can be used to know that this LiveData is being used thus should be kept up to date.

onInactive

@CallSuper
protected void onInactive()

Called when the number of active observers change from 1 to 0.

This does not mean that there are no observers left, there may still be observers but their lifecycle states aren't STARTED or RESUMED (like an Activity in the back stack).

You can check if there are observers via hasObservers.