android -java.io.IOException:处置后取消

时间:2019-05-02 08:52:32

标签: android kotlin retrofit rx-java android-architecture-components

我正在使用android体系结构组件rxjava并使用mvvm结构进行改造,顺便说一下,我在这些领域中是新手

我的问题是这个,我将我的一次性用品放置在viewmodel中,问题是这样,当我从一个活动转到另一个活动或关闭应用程序时将触发该事件,当它退出时将不会重新启动重新打开活动,所以我失去了连接,并且失败了:java.io.IOException:当我想再次使用api连接时取消了错误。

这是我的代码:

class CategoryViewModel(private val model:CategoryModel): ViewModel() {

private lateinit var catsLiveData:MutableLiveData<MutableList<Cat>>

fun getCats():MutableLiveData<MutableList<Cat>>{
    if(!::catsLiveData.isInitialized){
        catsLiveData=model.getCats()
    }
    return catsLiveData;
}

override fun onCleared() {
    super.onCleared()
    model.clearDisposable()
}

这是我从互联网上获取数据的模型类:

class CategoryModel(
    private val netManager: NetManager,
    private val sharedPrefManager: SharedPrefManager) {

private lateinit var categoryDao: CategoryDao
private lateinit var dbConnection: DbConnection
private lateinit var lastUpdate: LastUpdate
private var list: MutableLiveData<MutableList<Cat>> = MutableLiveData()
public val compositeDisposable= CompositeDisposable()

fun getCats(): MutableLiveData<MutableList<Cat>> {

        return getCatsOnline();


}

private fun getCatsOnline(): MutableLiveData<MutableList<Cat>> {
    Log.v("this", "online ");
    val getCats = ApiConnection.client.create(Category::class.java)
    compositeDisposable+=getCats.getCats(sharedPrefManager.getUid(), lastUpdate.getLastCatDate())
            .subscribeOn(Schedulers.io())
            .observeOn(AndroidSchedulers.mainThread())
            .subscribe(
                    { success ->
                        list += success.cats

                    }, { error ->
                Log.v("this", "ErrorGetCats " + error.localizedMessage);
            }
            )

    return list;
}


fun clearDisposable(){
    if(!compositeDisposable.isDisposed){
        compositeDisposable.dispose()
        Log.v("this","disposable called");
    }
}
}

这有什么问题?

1 个答案:

答案 0 :(得分:0)

处置复合物将使其处置添加到它的每个将来的Disposable。将其更改为clear,您可以重复使用相同的CompositeDisposable

fun clearDisposable(){
    compositeDisposable.clear()
    Log.v("this","disposable called");
}