How can I reuse a Subscriber between two Observables (RxJava)
问题 In order to not repeat myself, I want to re-use a Subscriber variable between two observables. How do you do accomplish this? My current code below does not work, because after the subscriber is used once, it is unsubscribed and no longer works again. If I new a Subscriber instead of reusing a variable, my subscription works. I don't want to write the same code twice, if possible. public class HomePresenter extends BasePresenter<HomeView> { ArticleRepo articleRepo; @Inject public