Created
December 1, 2018 02:30
-
-
Save Diolor/0351c58961307e57ac192a3b5f7e209e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun printCurrentThread(tag: String) = println("$tag: ${Thread.currentThread().name.substringBefore("-")}") | |
fun main(args: Array<String>) { | |
printCurrentThread("main thread name") | |
val subject = BehaviorSubject.create(Unit) | |
val connectable = subject | |
.observeOn(io()) | |
.replay().refCount() | |
connectable | |
.subscribe { | |
printCurrentThread("subscribe onNext 1") | |
} | |
connectable | |
.subscribe { | |
printCurrentThread("subscribe onNext 2") | |
} | |
Thread.sleep(1000L) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment