我有打网络电话的功能。可以同时多次调用它,并且每个调用同时运行。
getDataTask() // it is subscribed on the background thread and observed on the main thread
.subscribe(
{ result -> onResult(result) },
{ onError() }
)
.addToDisposables()
我可以毫无问题地检索数据。onResult函数将ViewModel中的MutableLiveData字段更新为
private v