Vinicius Araujo
09/30/2020, 1:19 AMfun addA() = transaction{A insert statement}
fun addB() = trabsaction{B insert statement}
suspend fun applyAandB() = coroutineScope {
launch { addA() }
launch { addB() }
}
would them execute asyncronously?spand
09/30/2020, 5:34 AMVinicius Araujo
09/30/2020, 12:28 PMtapac
09/30/2020, 1:13 PMVinicius Araujo
09/30/2020, 5:18 PM