Android Kotlin Flows

From bibbleWiki
Jump to navigation Jump to search

Introduction

This is a page to capture anything important about kotlin flows. This very similar to RxJava

Simple Example

Note this code would not be executed, if there are no subscribers like RxJava

 
  val countDownFlow = flow<Int> {
    val startingValue = 10
    var currentValue = startingValue
    emit(currentValue)
    while (currentValue > 0) {
      delay(1000L)
      currentValue--
      emit(currentValue)
    }
  }

We can log our emits in the ViewModel to debug with

 
    init {
        collectFlow()
    }

    private fun collectFlow() {
        viewModelScope.launch {
            countDownFlow.collect { time ->
                println("Time remaining: $time")
            }
        }
    }

We can use collectLatest which will only output the latest state

Flow Operators

Like RxJava there are a billion operators. Here is filter.

 
    private fun collectFlow() {
        viewModelScope.launch {
            countDownFlow.filter {time ->
                time % 2 == 0
            }.collect { time ->
                println("Time Remaining: $time")
            }
        }
    }

Popular ones covered in the video are

  • Filter
  • Map
  • OnEach (for debugging, forgotten the one for RxJava)

Terminal Flow Operators

  • count (at the end)
  • reduce
  • fold (Same as Reduce with an initial value)

Flattening Operarors

  • flatMap
  • flatMapConcat
  • flatmapMerge

Other Operators with no name

  • buffer (This moves the emits to different co-routines)
  • conflate (need to read up on this)
  • collectLatest