Chain Completable and a Single RxJava + Retrofit
In My repository, I have two API calls that should be done sequentially. First API call returns Completable -> If this API call fails, we should not proceed further, if it succeeds we should continue with the second API call Second API call returns Single -> If this API call fails, we should NOT throw… Read More Chain Completable and a Single RxJava + Retrofit