Learn Kotlin Flow by real examples for Android

About this project:

  • This project is for someone who wants to get started with Kotlin Flow.
  • I have tried to add the examples we implement in our Android project frequently.

What is Flow?

Flow is an asynchronous data stream(which generally comes from a task) that emits values to the collector and gets completed with or without an exception.

This will make more sense when we go through the example. Let’s take a standard example of image downloading.

Assume that we have a task: To download an image, emit the items(values) which are the percentage of the image downloading like 1%, 2%, 3%, and so on. It can get completed with or without an exception. If everything goes well, the task will be completed without an exception. But, in case of network failure, the task will be completed with an exception.

So, there will be a task that will be done and will emit some values which will be collected by the collector.

Now, let’s discuss the major components of Flow.

The major components of Flow are as below:

  • Flow Builder
  • Operator
  • Collector

Let’s understand this with the following analogy.

Component Analogy
Flow Builder Speaker
Operator Translator
Collector Listener

Flow Builder

In simple words, we can say that it helps in doing a task and emitting items. Sometimes it is just required to emit the items without doing any task, for example, just emit a few numbers (1, 2, 3). Here, the flow builder helps us in doing so. We can think of this as a Speaker. The Speaker will think(do a task) and speak(emit items).

Operator

The operator helps in transforming the data from one format to another.

We can think of the operator as a Translator. Assume that the Speaker is speaking in French and the Collector(Listener) understands English only. So, there has to be a translator to translate French into English. That translator is an Operator.

Operators are more than this actually, using the operator, we can also provide the thread on which the task will be done. We will see this later.

Collector

The collector collects the items emitted using the Flow Builder which are transformed by the operators.

We can think of a collector as a Listener. Actually, Collector also comes under the operator which is known as Terminal Operator. The collector is a Terminal Operator.

Flow API Source Code

The Flow interfaces look like the below in the source code of Coroutines:

public fun interface FlowCollector<in T> {

    public suspend fun emit(value: T)

}

public interface Flow<out T> {

    public suspend fun collect(collector: FlowCollector<T>)

}

Hello World of Flow

flow {
    (0..10).forEach {
        emit(it)
    }
}.map {
    it * it
}.collect {
    Log.d(TAG, it.toString())
}
Code Block Component
flow { } Flow Builder
map { } Operator
collect {} Collector

Let’s go through the code.

  • First, we have a flow builder which is emitting 0 to 10.
  • Then, we have a map operator which will take each and every value and square(it * it). The map is Intermediate Operator.
  • Then, we have a collector in which we get the emitted values and print them as 0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100.

Note: When we actually connect both the Flow Builder and the Collector using the collect method, then only, it will start executing.

Now we have understood what exactly Flow is.

Steps to learn Kotlin Flow from this project

  • Learn about the Kotlin Flow from this blog
  • Then, just clone, build, run the project and start learning Kotlin Flow by examples.

You will learn the following from this Learn Kotlin Flow project:

  • How to use Kotlin Flow in Android Project?
  • Doing simple task in background using Kotlin Flow.
  • Doing tasks in series using Kotlin Flow.
  • Doing tasks in parallel using Kotlin Flow.
  • Making two network calls in parallel using Kotlin Flow.
  • Using operators like filter, map, reduce, flatMapConcat, zip, and etc.
  • Exception handling in Kotlin Flow
  • How to use onCompletion in Flow?
  • Retry Task using retry operator in Flow
  • Retry Task with Exponential Backoff in Flow
  • Using Kotlin Flow with Retrofit.
  • Using Kotlin Flow with Room Database.
  • Using Kotlin Flow with various 3rd party libraries.
  • Making two network calls in parallel using Kotlin Flow.
  • Doing task in series using Kotlin Flow.
  • Writing Unit-Test for ViewModel which uses Kotlin Flow.

Kotlin Flow Examples for Android Development: Activity and ViewModel

If this project helps you in anyway, show your love ❤️ by putting a ⭐ on this project ✌️

License

   Copyright (C) 2022 Amit Shekhar

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

Contributing to Learn Kotlin Flow

Just make pull request. You are in!

GitHub

View Github