You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been trying to do non-blocking IO requests with RxJava without success, all I have been able to achieve is making my calls run asynchronously on a thread from the Schedulers.io thread pool. It seems that the threads from Schedulers.io still block waiting for the response, therefore not doing real NIO.
Is it possible to do real NIO using just RxJava or does one have to use another library that does NIO (such as Unirest)?