Вот мое веселье в репозитории , который возвращает мне String Id из имени группы
@Suppress(“RedundantSuspendModifier”)
@WorkerThread
suspend fun fetchGroupId(groupName: String): String {
return groupDao.fetchGroupId(groupName)
}
А это функция на ViewModel
fun getGroupId(groupName: String) = scope.launch(Dispatchers.IO) {
groupId = repository.fetchGroupId(groupName)
}
Теперь я хочу, чтобы этот идентификатор группы был на стороне действия, что мне нужно делать?