blob: 2529d5ba48b4a9d960b7814fe8672fa3998be10d [file] [log] [blame]
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +03001/*
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03002 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +03003 */
4
5// This file was automatically generated from coroutines-guide-reactive.md by Knit tool. Do not edit.
Roman Elizarova9687a32018-06-29 17:28:38 +03006package kotlinx.coroutines.experimental.rx2.guide.basic09
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +03007
Roman Elizarov9fe5f462018-02-21 19:05:52 +03008import kotlinx.coroutines.experimental.channels.*
9import kotlinx.coroutines.experimental.*
10import kotlin.coroutines.experimental.*
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030011
12fun main(args: Array<String>) = runBlocking<Unit> {
Roman Elizarov8046fe12017-04-27 12:52:13 +030013 val broadcast = ConflatedBroadcastChannel<String>()
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030014 broadcast.offer("one")
15 broadcast.offer("two")
Roman Elizarovd24ad362017-05-16 17:43:09 +030016 // now launch a coroutine to print the most recent update
Roman Elizarov43e3af72017-07-21 16:01:31 +030017 launch(coroutineContext) { // use the context of the main thread for a coroutine
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030018 broadcast.consumeEach { println(it) }
19 }
20 broadcast.offer("three")
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030021 broadcast.offer("four")
Roman Elizarovd24ad362017-05-16 17:43:09 +030022 yield() // yield the main thread to the launched coroutine
Roman Elizarov8b38fa22017-09-27 17:44:31 +030023 broadcast.close() // now close broadcast channel to cancel consumer, too
Roman Elizarov3f871642017-04-17 15:46:54 +030024}