thevery
05/31/2018, 9:21 PMSingle.fromCallable { "hello" }
.subscribeOn(io())
.observeOn(mainThread())
.subscribe { it -> println(it) }
=> 8 methods
launch(UI) {
val s = withContext(CommonPool) { "hello" }
println(s)
}
=> 11 methods