You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when a view is paused, takeView() is invoked, which disposes the subscription. It would be better if the progress continued.
Perhaps instead of long lived presenters or singleton models, consider something better.
It should:
Generally: Continue running on configuration change, stop running when destroyed.
Bonus pts: Configure when the subscription should be disposed: if it is a destructive server operation, keep on going. If it is just a view subscription, kill it when you feel like it.
Bonus pts: Consider using a Lifecycle observer
The text was updated successfully, but these errors were encountered:
Currently when a view is paused,
takeView()
is invoked, which disposes the subscription. It would be better if the progress continued.Perhaps instead of long lived presenters or singleton models, consider something better.
It should:
The text was updated successfully, but these errors were encountered: