``` Single.fromCallable { someBlockingCode() }...
# rx
u
Copy code
Single.fromCallable {
    someBlockingCode()
}
b
You can switch to Single.create { emitter -> // check emitter.isDisposed in blocking code }
u
yea I figured, thanks