Currently manageViewDisposable() throws an exception when we're adding a Disposable while no view is attached.
I was thinking if this is preferable to just disposing, as we want that Disposable to dispose when view detaches. No view is attached so we could simply dispose it. We could also think of adding a configuration parameter for this.
Currently manageViewDisposable() throws an exception when we're adding a
Disposable
while no view is attached.I was thinking if this is preferable to just disposing, as we want that
Disposable
to dispose when view detaches. No view is attached so we could simply dispose it. We could also think of adding a configuration parameter for this.