observe Forever
Observe the data object forever.
The data object will notify its Observer in the following scenarios:
When the observation starts: LiveData.observe.
When the Observer moves from not observing to observing.
When the value changes: LiveData.getValue.
Parameters
observer
The object observing the change.