Kapper 1.3 Supports Kotlin Flows For Database Queries
Kapper, Kotlin's lightweight ORM library, now supports queries returning Kotlin Flows for asynchronous data processing.
Kapper, Kotlin's most lightweight and idiomatic ORM library brings more Kotlin goodness with support for Flows. Kapper 1.3 supports queries returning Kotlin Flows. What are Flows? Flows are a Kotlin API for asynchronous streams of data. They are similar to Rx Observables, but are simpler and more idiomatic to Kotlin. They are a great fit for asynchronous data processing, particularly for database operations where results may be large or processing needs to happen incrementally. This makes them a perfect addition to Kapper's existing coroutine support. Kapper 1.3: Simple Flow I...