I have been learning about Kotlin Flows lately. I have a few questions in understanding them. Please help me clarify these things:
- If we don’t have to send multiple values(in case we only use REST APIs), in that case what is the advantage of using Kotlin Flows over LiveData?
- How is the data sent from a streaming API to the app?
- How do we generally integrate streaming APIs in an android app if we use/don’t use Kotlin flows?