When I do this, am I creating an instance of Dispo...
# announcements
c
When I do this, am I creating an instance of DisposableProvider for each Interactor instance?
b
The lazy is constructed inside the function and will be initialized every time the function is called (hence, has no utility)
So your code is equivalent to
Interactor(..., disposables = CompositeDisposable())
c
Ok, true thanks 🙂