/* * Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. */ // This file was automatically generated from coroutines-guide-reactive.md by Knit tool. Do not edit. package kotlinx.coroutines.rx2.guide.basic06 import io.reactivex.subjects.BehaviorSubject fun main() { val subject = BehaviorSubject.create() subject.onNext("one") subject.onNext("two") // updates the state of BehaviorSubject, "one" value is lost // now subscribe to this subject and print everything subject.subscribe(System.out::println) subject.onNext("three") subject.onNext("four") }