Jeff Beyond
04/26/2020, 12:23 PMmbonnin
04/26/2020, 12:29 PMmbonnin
04/26/2020, 12:34 PMJeff Beyond
04/26/2020, 12:55 PMmbonnin
04/26/2020, 2:44 PMArkadii Ivanov
04/26/2020, 2:52 PMmainScheduler.submit {}
kpgalligan
04/26/2020, 3:51 PMJeff Beyond
04/27/2020, 6:21 AMArkadii Ivanov
04/27/2020, 9:58 AMsubscribeOn
and observeOn
are two independent operators, so there is no such a thing like "switching thread from the subscribeOn scheduler to the observeOn". You can check how these operators are implemented for `Observable`: subscribeOn and observeOn. Other types (Single
, Maybe
and Completable
) have similar implementations. The Scheduler
interface is the abstraction over threading. There are multiple schedulers provided by the library. They are implemented separately for every target. What targets do you support?Jeff Beyond
04/27/2020, 10:11 AMArkadii Ivanov
04/27/2020, 10:28 AMArkadii Ivanov
04/27/2020, 10:29 AMArkadii Ivanov
04/27/2020, 10:30 AMJeff Beyond
04/27/2020, 1:45 PM