RxJava2 - interval and schedulers
问题 Let's say I have an interval, and that I've given it a computationScheduler. Like this: Observable .interval(0, 1, TimeUnit.SECONDS, computationScheduler) .flatMap { ... } Then, will everything that happens in flatmap {...} also be scheduled on a computation thread? In the sources for Observable.interval(long initialDelay, long period, TimeUnit unit, Scheduler scheduler), it says: * @param scheduler * the Scheduler on which the waiting happens and items are emitted As a beginner to RxJava, I