interface Observer
(source)
Interface to be implemented by classes that want to observe a tabs tray.
abstract fun onTabClosed(session: Session): Unit
A tab has been closed. |
|
abstract fun onTabSelected(session: Session): Unit
A new tab has been selected. |
class TabsTrayInteractor : Observer
Interactor for a tabs tray component. Subscribes to the tabs tray and invokes use cases to update the session manager. |