我将其与DataStore
一起用于转换Flow结果,它显示了MoshifromJson
方法的警告
dataStore.data.map {
val json = it[key]
json?.let { adapter.fromJson(json) } ?: defaultValue
}
有没有可能在不忽视警告的情况下解决这个问题?
我认为您需要做的是使用withContext
方法更改fromJson
方法的执行线程(更改执行上下文(:
dataStore.data.map { data ->
val json = data[key]
json?.let { parseJson(it) } ?: defaultValue
}
suspend fun parseJson(json: String) = withContext(Dispatchers.IO) {
adapter.fromJson(json)
}