SubscribeOn
specify the Scheduler on which an Observable will operate
The ObserveOn operator is similar, but more limited. It instructs the Observable to send notifications to observers on a specified Scheduler.
In some implementations there is also an UnsubscribeOn operator.
See Also
Language-Specific Information
RxGroovy subscribeOn unsubscribeOn
To specify which Scheduler observers will use to unsubscribe from an Observable, use the unsubscribeOn
operator, passing it the appropriate Scheduler
.
RxJava 1․x subscribeOn unsubscribeOn
To specify which Scheduler observers will use to unsubscribe from an Observable, use the unsubscribeOn
operator, passing it the appropriate Scheduler
.
RxJS subscribeOn