what <@U6Y33L3ME> suggested are a very good soluti...
# rx
k
what @edwardwongtl suggested are a very good solutions too, but 1)
RxLifeCycle
is one extra library to understand + not an easy task to architect your code around it also http://blog.danlew.net/2017/08/02/why-not-rxlifecycle/ 2)
compositeDisposable
architecture again -> from presenter, viewholder etc you have to bubble up your disposables to the activity with the
takeUntil
solution you only have to inject the observable from activity into any other object which you might already doing.
👍 1