another question, I am trying to understand why I ...
# rx
m
another question, I am trying to understand why I should not use
blocking
in rx streams I dont get this one
Copy code
val i = Observable.fromArray(1,2,3,4).blockingFirst() //works

		val j = Observable.fromArray(1,2,3,4)
				.observeOn(AndroidSchedulers.mainThread())
				.blockingFirst() //freezes app
		i.toString()
		j.toString()