Hello guys! I have these two implementations in a ...
# coroutines
w
Hello guys! I have these two implementations in a
DeepLinkPresenter
. Which of those are the "best" approach having in mind the CoroutineScope implementation.
d
I generally prefer the first one since you keep the
CoroutineScope
private but I'd pass the dispatchers directly as supposed to putting it in the scope, then you'd only have one scope (which you should).