<@U5L3FHYN5> commented on <@U8BCBJY2H>’s file <htt...
# android
u
@colintheshots commented on @Thiago’s file https://kotlinlang.slack.com/files/U8BCBJY2H/F8E000B1D/error_-_network.kt: By default, RxJava uses the current thread for everything. It's synchronous by default, but can be used easily to move work off the main thread. If you find yourself using AsyncTasks inside Rx Observables to get async behavior, you're failing hard. You can change threads using subscribeOn() and observeOn() with a Scheduler specified, but you should search and read to understand how Schedulers work. Don't just copy-paste the first thing that works for you.