blob: 875d27974567f200191bf902e3694258024de00e [file] [log] [blame]
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +03001/*
2 * Copyright 2016-2017 JetBrains s.r.o.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17// This file was automatically generated from coroutines-guide-reactive.md by Knit tool. Do not edit.
Roman Elizarova9687a32018-06-29 17:28:38 +030018package kotlinx.coroutines.experimental.rx2.guide.basic09
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030019
Roman Elizarov9fe5f462018-02-21 19:05:52 +030020import kotlinx.coroutines.experimental.channels.*
21import kotlinx.coroutines.experimental.*
22import kotlin.coroutines.experimental.*
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030023
24fun main(args: Array<String>) = runBlocking<Unit> {
Roman Elizarov8046fe12017-04-27 12:52:13 +030025 val broadcast = ConflatedBroadcastChannel<String>()
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030026 broadcast.offer("one")
27 broadcast.offer("two")
Roman Elizarovd24ad362017-05-16 17:43:09 +030028 // now launch a coroutine to print the most recent update
Roman Elizarov43e3af72017-07-21 16:01:31 +030029 launch(coroutineContext) { // use the context of the main thread for a coroutine
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030030 broadcast.consumeEach { println(it) }
31 }
32 broadcast.offer("three")
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030033 broadcast.offer("four")
Roman Elizarovd24ad362017-05-16 17:43:09 +030034 yield() // yield the main thread to the launched coroutine
Roman Elizarov8b38fa22017-09-27 17:44:31 +030035 broadcast.close() // now close broadcast channel to cancel consumer, too
Roman Elizarov3f871642017-04-17 15:46:54 +030036}