What’s the difference between SubscribeOn and ObserveOn
It helped me to understand this by thinking of SubscribeOn as setting the thread being “passed up” the chain and ObserveOn as setting the thread “passed down” the chain. The code below uses named threads which you can play with. Thread.CurrentThread.Name = “Main”; IScheduler thread1 = new NewThreadScheduler(x => new Thread(x) { Name = “Thread1” … Read more