How can we handle in case multiple data sources update value to the same LiveData
and observed by the view?
If we only want the result from the last button that user click and because the network call may have latency and the final result that update to the view may be from the first called.
Click Button-A → For Loading API#1 → post value to → LiveData<> A
Click Button-B → For Loading API#2 → post value to → LiveData<> A
ViewA → Observer on → LiveData<> A