/* * Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. */ // This file was automatically generated from coroutines-guide-reactive.md by Knit tool. Do not edit. package kotlinx.coroutines.rx2.guide.basic04 import io.reactivex.* import kotlinx.coroutines.* import kotlinx.coroutines.reactive.* import kotlin.coroutines.* fun main() = runBlocking { val source = Flowable.range(1, 5) // a range of five numbers .doOnSubscribe { println("OnSubscribe") } // provide some insight .doOnComplete { println("OnComplete") } // ... .doFinally { println("Finally") } // ... into what's going on // collect the source fully source.collect { println(it) } }