haroldadmin / Vector

Kotlin Coroutines based MVI architecture library for Android
https://haroldadmin.github.io/Vector/
Apache License 2.0
193 stars 9 forks source link

Switch to StateFlow instead of ConflatedBroadcastChannel #34

Closed haroldadmin closed 4 years ago

haroldadmin commented 4 years ago

A StateFlow is the replacement for ConflatedBroadcastChannel.

It is a conflated Flow which supports keeping history using the buffer operator. It is also faster, which is proven using the benchmark added in this PR.