A quick tutorial on merging multiple Kotlin Flows into a single Flow.
Also find me here:
Baeldung Author
Ezra Kanake
A passionate and self driven software developer. A Kotlin lover and loves to speak on topics related to Android development. During his free time he loves doing open source projects.
Here's what I've written (so far):
Baeldung on Kotlin
- All
- Kotlin Basics (8)
- Kotlin Concurrency (7)
- Testing (3)
- Patterns (3)
- Algorithms (3)
- Persistence (1)
- Libraries (1)
- Kotlin Web (1)
- Kotlin Strings (1)
- Kotlin Functions (1)
- Kotlin Collections (1)
- Kotlin Classes and Objects (1)
- Kotlin (1)
Combining Multiple Kotlin Flows
Filed under Kotlin Concurrency
A quick and practical guide to combining multiple Kotlin Flows.
Async Exception Handling in Kotlin
Filed under Kotlin Concurrency
A quick tutorial on async exception handling in Kotlin coroutines.
Difference Between single() and first() in Kotlin Flows
Filed under Kotlin Concurrency
Learn the differences between single() and first() for Kotlin Flows.
Using Spy in MockK
Filed under Testing
A quick tutorial on using spies with MockK in Kotlin.
Kotlin when vs. Java switch Statement
Filed under Kotlin Basics
A quick tutorial on the difference between when expressions in Kotlin and switch statements in Java.
Difference Between Value and Emit in MutableStateFlow Kotlin
Filed under Kotlin Concurrency
A quick tutorial on the differences between the value property and emit function of a MutableStateFlow in Kotlin.
The Proxy Pattern in Kotlin
Filed under Patterns
A quick tutorial on implementing the proxy pattern in Kotlin.
Difference Between collect() and collectLatest() in Kotlin Flows
Filed under Kotlin Concurrency
Learn the difference between collect() and collectLatest() when working with Kotlin Flows.