Last active
March 12, 2020 01:47
-
-
Save CDRussell/a823afd7233fe7e1897a2df6e90acde7 to your computer and use it in GitHub Desktop.
Coroutines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TabSwitcherActivity : CoroutineScope by MainScope() { | |
fun onTabDeleted(tab: TabEntity) { | |
launch { viewModel.onTabDeleted(tab) } | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TabSwitcherViewModel { | |
suspend fun onTabDeleted(tab: TabEntity) { | |
tabRepository.delete(tab) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TabRepository { | |
suspend fun delete(tab: TabEntity) { | |
deleteOldPreviewImages(tab.tabId) | |
tabsDao.deleteTabAndUpdateSelection(tab) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment