blob: 3de6710f18bf24e44090006e56363decb68f969e [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.basic06
Roman Elizarov4b0ef7b2017-04-17 12:39:29 +03007
8import io.reactivex.subjects.BehaviorSubject
9
10fun main(args: Array<String>) {
11 val subject = BehaviorSubject.create<String>()
12 subject.onNext("one")
13 subject.onNext("two") // updates the state of BehaviorSubject, "one" value is lost
14 // now subscribe to this subject and print everything
15 subject.subscribe(System.out::println)
16 subject.onNext("three")
17 subject.onNext("four")
18}