implement an observable Item data class to group information from database about an Item. It is composed using a group of observables using MediatorLiveData from the set of LiveData Room entities
DoD: Item responds to notifications from the set of LiveData entities into a single LiveData for use by other portions of app, most notably UI observers notifying observers when the underlying LiveData entities change
implement an observable
Item
data class to group information from database about anItem
. It is composed using a group of observables usingMediatorLiveData
from the set ofLiveData
Room entities DoD:Item
responds to notifications from the set ofLiveData
entities into a singleLiveData
for use by other portions of app, most notably UI observers notifying observers when the underlyingLiveData
entities change