interface Observer
(source)
Interface to be implemented by classes that want to observe the session manager.
open fun onAllSessionsRemoved(): Unit
All sessions have been removed. Note that this will callback will be invoked whenever removeAll() or removeSessions have been called on the SessionManager. This callback will NOT be invoked when just the last session has been removed by calling remove() on the SessionManager. |
|
open fun onSessionAdded(session: Session): Unit
The given session has been added. |
|
open fun onSessionRemoved(session: Session): Unit
The given session has been removed. |
|
open fun onSessionSelected(session: Session): Unit
The selection has changed and the given session is now the selected session. |
class EngineViewPresenter : Observer
Presenter implementation for EngineView. |
|
class TabsTrayPresenter : Observer
Presenter implementation for a tabs tray implementation in order to update the tabs tray whenever the state of the session manager changes. |
|
class ToolbarPresenter : Observer, Observer
Presenter implementation for a toolbar implementation in order to update the toolbar whenever the state of the selected session changes. |