Das135
transaction { FirstObject.selectAll() supplyAsync { runBlocking { SecondObject.selectAll() } } }
SecondObject.selectAll()
No transaction in context
tapac
transaction { FirstObject.selectAll() val result = async { suspendedTransaction { SecondObject.selectAll().toList() } } println("${result.await()}") }
A modern programming language that makes developers happier.