Is `blockingGet` an anti-pattern? or Is it fine fo...
# rx
b
Is
blockingGet
an anti-pattern? or Is it fine for certain use cases? Like, just to retrieve some value in background thread?
Copy code
var value = Single.fromCallable { doCostlyOp() }.subscribeOn(io()).observeOn(io()).blockingGet();