KUnidirectional icon indicating copy to clipboard operation
KUnidirectional copied to clipboard

The goal of this sample app is to show how we can implement unidirectional data flow architecture based on Flux and Redux on Android... using Kotlin :wink:

Results 2 KUnidirectional issues
Sort by recently updated
recently updated
newest added

In the [blogpost](https://proandroiddev.com/unidirectional-data-flow-on-android-the-blog-post-part-1-cadcf88c72f5) you’ve considered unidirectional data flow (UDF) architecture in the Clean architecture (CA) context. Thank you for this point! I’ve a question about СA layers and UDF. In...

What is happened if I'll remove `@syncronized`? I’ve considered two options. Method `handle()` will execute on the `storeThread` or same thread. Between lines of the code `actions.offer(action)` and `handle(actions.poll())` it's...