blob: 738c4aba29509df708d44604fca1ef9aa8840b5b [file] [log] [blame]
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +03001/*
Roman Elizarovdb0ef0c2019-07-03 15:02:44 +03002 * Copyright 2016-2019 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 Elizarov0950dfa2018-07-13 10:33:25 +03006package kotlinx.coroutines.rx2.guide.basic09
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +03007
Roman Elizarov0950dfa2018-07-13 10:33:25 +03008import kotlinx.coroutines.channels.*
9import kotlinx.coroutines.*
10import kotlin.coroutines.*
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030011
Prendota65e6c8c2018-10-17 11:51:08 +030012fun main() = 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
Vsevolod Tolstopyatovbbaf99d2018-09-11 15:55:56 +030017 launch { // 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 Elizarov3ed7a7d2019-06-17 20:54:16 -070023 broadcast.close() // now close the broadcast channel to cancel the consumer, too
Roman Elizarov3f871642017-04-17 15:46:54 +030024}