/ActivityPresenter.kt Secret
Last active
October 28, 2022 05:57
ActivityPresenter with two leaks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ActivityPresenter @Inject constructor( | |
private val repository: SomeRepository | |
) : BasePresenter<ActivityView>() { | |
/* removed for brevity */ | |
private val viewDisposable = CompositeDisposable() | |
override fun attachView(view: ActivityView?) { | |
super.attachView(view) | |
val disposable = repository.doSomeHeavyWorkAndReturnState() | |
.subscribeOn(Schedulers.io()) | |
.subscribe { viewState.render(it) } | |
viewDisposable.add(disposable) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment