public ConnectablePresenter<View extends StatelessView<?>>
Presents data to views. Abstracts business logic from views. Must be used only by main thread. Default state is Paused.
void resume(@NotNull
View view)
Called when presenter should resume operations.
view - which will be used to display data.void pause()
Called when presenter should pause operation. This is the default state. At this state view will never be updated even if some long-running operation completes after this point.
boolean back()
Called when presenter should navigate back.