Current Thread Schedulers of Rx
Learn about the current thread Scheduler and its usage in RxJS.
We'll cover the following...
The currentThread Scheduler is synchronous, just like the immediate Scheduler, but in case we use recursive operators, it enqueues the actions to execute instead of executing them right away.
A recursive operator is an operator that schedules another operator. A good example of a recursive operator is the repeat
operator. The repeat
operator—if given no parameters—keeps repeating the previous ...