blob: 78bcee36f470a7ca7a3e6cbadbb99f6e8ff1953f [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.
18package guide.reactive.basic.example08
19
Roman Elizarov9fe5f462018-02-21 19:05:52 +030020import io.reactivex.subjects.*
21import kotlinx.coroutines.experimental.*
22import kotlinx.coroutines.experimental.rx2.*
23import kotlin.coroutines.experimental.*
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030024
25fun main(args: Array<String>) = runBlocking<Unit> {
26 val subject = BehaviorSubject.create<String>()
27 subject.onNext("one")
28 subject.onNext("two")
Roman Elizarovd24ad362017-05-16 17:43:09 +030029 // now launch a coroutine to print the most recent update
Roman Elizarov43e3af72017-07-21 16:01:31 +030030 launch(coroutineContext) { // use the context of the main thread for a coroutine
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030031 subject.consumeEach { println(it) }
32 }
33 subject.onNext("three")
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030034 subject.onNext("four")
Roman Elizarovd24ad362017-05-16 17:43:09 +030035 yield() // yield the main thread to the launched coroutine <--- HERE
Roman Elizarov8b38fa22017-09-27 17:44:31 +030036 subject.onComplete() // now complete subject's sequence to cancel consumer, too
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +030037}