Parallelism with Android SQLite
The SQLDelight documentation provides this example:
val players: Flow<List<HockeyPlayer>> =
playerQueries.selectAll()
.asFlow()
.mapToList(Dispatchers.IO)
This looks reasonable, right? In the Square Point Of Sale application, we recently ...
blog.p-y.wtf11 min read